@import url('../fonts/fonts.css');
@import url('partials/header.css');
@import url('partials/banner_principal.css');
@import url('partials/infos.css');
@import url('partials/product-card.css');
@import url('partials/price-ranges.css');
@import url('partials/products_category.css');
@import url('partials/featured_product.css');

body {
    font-family: 'Product Sans', sans-serif; 
    font-size: 16px;
    overflow-x: hidden;
}

iframe.skiptranslate {
    display: none !important;
    visibility: hidden !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

#goog-gt-tt, .goog-te-balloon-frame {
    display: none !important;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}

.container {
    max-width: 1280px;
}

.f13 {
    font-size: 13px;
}
.f15 {
    font-size: 15px;
}
.f16 {
    font-size: 16px;
}
.f18 {
    font-size: 18px;
}
.f20 {
    font-size: 20px;
}
.f24 {
    font-size: 24px;
}
.f28 {
    font-size: 28px;
}
.f26 {
    font-size: 26px;
}
.f30 {
    font-size: 30px;
}
.f35 {
    font-size: 35px;
}

.footer-custom {
    color: #CCCCCC !important;
}

.footer-custom a,
.footer-custom i,
.footer-custom h5,
.footer-custom p,
.footer-custom span,
.footer-custom li {
    color: #CCCCCC !important;
    transition: color 0.3s ease;
}

.footer-custom a:hover,
.footer-custom a:hover i {
    color: #FFFFFF !important;
}

.footer-custom h6 {
    letter-spacing: 0.5px;
}

.text-white-50 {
    color: #CCCCCC !important; 
    transition: color 0.3s ease;
}

.hover-white:hover {
    color: #FFFFFF !important; 
}

.breadcrumbs {
    text-transform: lowercase;
    display: flex;
    flex-wrap: wrap;
    a {
        text-decoration: none;
        color: #777777;
        transition: all 0.3s ease;

        &:hover {
            text-decoration: underline;
        }

        &.has-next {
            margin-right: 60px;
            text-wrap: wrap;
            &::after {
                width: 50px;

                text-align: center;
                position: absolute;
                content: "\f054";
                font-family: "Font Awesome 7 Free";
                padding-top: 2px;

                font-size: 14px;
                font-weight: 900;
                text-decoration: none;
                color: #777777;
            }
        }
    }
}

#search-content #orderBy,
#search-content #limit {
  background-color: #F7F7F7;
  border: 1px solid #F7F7F7;
  color: #666666;
  padding: 0.5rem 1.3rem;
  border-radius: 4px;
}

.pagination .page-link {
    color: #000;
}

.pagination .page-item.active .page-link {
    font-weight: bold;
    background-color: #FF6900;
    border-color: #FF6900;
}

.prod-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.prod-share span {
    font-size: 14px;
    font-weight: 500;
    font-weight: bold;
    color: var(--cinza-letra-marca-produto);
}
.prod-share a {
    color: #e7e7e7;
    border: 2px solid;
    border-radius: 8px;
    padding: 3px;
}

.prod-share a:hover {
    color: #212529;
}

.prod-share a svg {
    color: black;
}

.prod-share a i {
    color: black;
}

.filtros-busca .input_container {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  font-family: sans-serif;
  display: flex;
  align-items: center;
}

.filtros-busca input[type="radio"],
.filtros-busca input[type="checkbox"] {
  cursor: pointer;
  opacity: 0;
  position: absolute;
}

.filtros-busca .checkbox {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #aaa;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.filtros-busca input[type="radio"]:checked + .checkbox,
.filtros-busca input[type="checkbox"]:checked + .checkbox {
  border-color: #1b1b1b;
  background-color: #0e0d0d;
}



/*BOTÃO VOLTAR AO TOPO*/
#btnVoltarAoTopo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;   
    right: 20px;    
    width: 45px;
    height: 45px;
    background-color: black; 
    color: white;
    border: none;
    border-radius: 50%; 
    cursor: pointer;
    z-index: 999; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#btnVoltarAoTopo img {
    width: 15px;  
    height: 15px;
    transform: rotate(180deg); 
}

#btnVoltarAoTopo.show {
    opacity: 1;
    visibility: visible;
}

.btn-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease; 
}

.btn-whatsapp:hover {
    color: #FFF;
    transform: scale(1.1); 
}

@media (max-width: 768px) {
    .btn-whatsapp {
        width: 50px;      
        height: 50px;
        bottom: 20px;     
        right: 20px;       
        font-size: 24px;   
    }
}