@import url('../fonts/fonts.css');

body {
    font-family: "Vogue Plain", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
}

.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;
}

header .btn-show-cart[data-items]:after {
    content: attr(data-items);
    position: absolute;
    width: 26px;
    height: 26px;
    top: -13px;
    right: -13px;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background: #F89401;
    border-radius: 50%;
}

.breadcrumbs {
    /* font-family: "var(--vogue)"; */
    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: #F89401;
    border-color: #F89401;
}


.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"] {
  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 {
  border-color: #F89401;
  background-color: #F89401;
}

.filtros-busca input[type="radio"]:checked + .checkbox::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}