
        .principal {
            display: flex;
            justify-content: center;
          /*  align-items: center;*/
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
         /*   background-color: rgba(0,0,0,0.5);*/
            padding: 20px;
            box-sizing: border-box;
            position: relative;
        }
        .principal-content {
          
            display: flex;
            background-color: #fff;
            margin: auto;
            padding: 20px;
           /* border: 1px solid #ccc;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
          width: auto;
            max-width: 720px;*/
            width: 50%;
            border-right: 1px solid #ccc;
            
        }
        .main-image-container {
            flex: 1;
            max-width: 600px;
        }
        .product-cover-principal {
            width: 100%;
            height: auto;
            display: block;
            min-width: 450px;
        }
        .thumbnails-container {
            flex: 0 0 120px;
            overflow-y: auto;
            max-height: 520px;
           /* margin-left: 20px;*/
            overflow-x: hidden;
        }
        .thumb {
            width: 95%;
            margin-bottom: 10px;
            cursor: pointer;
            opacity: 0.6;
            border: 2px solid #dadada;
            max-width: 100%;
        height: auto;
        }
        .thumb:hover, .thumb.selected {
            opacity: 1;
            border: 2px solid #ed9d8e;
        }
        figure {
            margin: 0px;
        }

        /* Responsividade */
        @media (max-width: 650px) {
            .principal-content {
                flex-direction: column; /* Muda a direção do flex para coluna */
                width: 100%;
            }
            .thumbnails-container {
             flex: 1 1 100%;
                max-height: none; /* Remove a altura máxima */
                margin-left: 0;
                margin-top: 20px; /* Adiciona espaço entre a imagem principal e as miniaturas */
                overflow-x: auto; /* Permite rolagem horizontal */
                display: flex; /* Mantém miniaturas alinhadas horizontalmente */
                flex-wrap: nowrap; /* Previne que as miniaturas se enrolem para a próxima linha */
                justify-content: flex-start; /* Alinha miniaturas ao início */
            }
            .thumb {
                width: 120px; /* Largura fixa para cada miniatura */
                margin-right: 10px; /* Espaço entre miniaturas */
                margin-bottom: 0; /* Remove a margem inferior */
            }
            .product-cover-principal {
                min-width: 100%!important;
            }
        }
       /* Estilos Básicos */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px; /* Aumentado para melhor leitura */
    color: #333; /* Cor mais escura para melhor contraste */
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.principal {
    display: flex;
    justify-content: center;
   /* align-items: center;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  /*  background-color: rgba(0, 0, 0, 0.6); /* Fundo mais escuro */
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}


/* Melhorias para os títulos e textos */
.product_title {
    font-size: 1.9rem;
    font-weight: 100;
    margin-bottom: 10px;
    font-family: 'JOST', serif;
    text-transform: uppercase;
}

/* Ajustes para a descrição do produto */
.descricao p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Estilos para botões */
.button, .woosc-btn, .woosw-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover, .woosc-btn:hover, .woosw-btn:hover {
    background-color: #004494;
}

/* Estilos para formulários e input */
.quantity input[type='button'], .quantity input[type='number'] {
    padding: 5px 10px;
}

    img2 {
        max-width: 100%;
        height: auto;
    }

/* Ajustes para responsividade */
@media (max-width: 650px) {
    .principal{
        flex-direction: column;
        padding: 5px;
    }
    .principal-content {
        flex-direction: column;
        width: 100%;
        padding: 0px;
    }
    .thumbnails-container {
        max-height: none;
        margin-left: 0;
        margin-top: 20px;
        overflow-x: auto;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .thumb {
        width: 120px;
        margin-right: 10px;
        margin-bottom: 0;
    }
    .summary {
        padding: 20px!important;
        width: 100%!important;

    }
    img {
        max-width: 100%;
        height: auto;
    }
}
.summary {
    padding: 0px 20px 0px 20px;
    height: 100%;
        display: flex;
        flex-direction: column;
        width: 50%;
}
@font-face {
  font-family: 'JOST';
  src: url('../fontes/Jost-Regular.ttf') format('opentype'),
       url('../fontes/Jost-Bold.ttf') format('opentype'),
       url('../fontes/Jost-Italic.ttf') format('opentype');
  font-weight: normal, bold;
  font-style: normal, italic;
  font-display: swap;
}
.linha {
    padding-top: 20px;
    margin-top: 0px;
    border-top: 1px solid #ededed;
}
.summary button {
    all: unset;
        cursor: pointer;
        outline: revert;
        height: 40px;
        line-height: 40px;
        padding: 0 2em;
        text-align: center;
        background-color: #be9c79;
        background-color: #907046;
        color: #ffffff;
        -webkit-font-smoothing: antialiased;
    }
.summary button:hover {
    background-color: black;
    color: white;

}
::-webkit-scrollbar {
    width: 10px; /* Largura da barra de rolagem */
}

/* Fundo da barra de rolagem */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Cor de fundo */
}

/* Cor da barra de rolagem */
::-webkit-scrollbar-thumb {
    background: #cccccc; /* Cor da barra */
}

/* Cor da barra de rolagem ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
    background: #a3a2a2; /* Cor ao passar o mouse */
}
.det1{
    display: none;
}
.det2{

    margin-top: 20px;
}
.det3{
    margin-top: 20px;
}
.det4{
     float: left;padding-right: 4px;	font-family: 'Josefin Sans';font-size: 11px;margin-top: 3px;letter-spacing: 1.4px;margin-top: 6.9px;
}
.det5 {
 float:left;        font-family: 'Josefin Sans';font-size: 14px;	margin-top: 3px; margin-right:1px; letter-spacing:1.5px
}
.det6 {
    float:left;    font-size: 13px;font-family: emoji;    letter-spacing: .8px;	padding-left: 2px;
}
.tituloprincipal {
    font-size: 30px;text-align: center;
}