a,
button {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: none;
  background-color: inherit;
}

button,
input,
input:hover {
  transition: all 0.8s ease;
}

.cookie-message-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000000;
  font-size: 16px;
}

.cookie-message-wrapper span {
  font-size: 14px;
  line-height: 2;
}

input[type="text"],
input[type="email"] {
  padding: 10px;
}

input::-webkit-input-placeholder {
  color: var(--cinza60);
}

input:-moz-placeholder {
  color: var(--cinza60);
  opacity: 1;
}

input::-moz-placeholder {
  color: var(--cinza60);
  opacity: 1;
}

input:-ms-input-placeholder {
  color: var(--cinza60);
}

textarea::-webkit-input-placeholder {
  color: var(--cinza60);
}

textarea:-moz-placeholder {
  color: var(--cinza60);
  opacity: 1;
}

textarea::-moz-placeholder {
  color: var(--cinza60);
  opacity: 1;
}

textarea:-ms-input-placeholder {
  color: var(--cinza60);
}

.form-error {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #c60f13;
  clear: both;
}

.success-message {
  color: green;
  display: none;
  margin-top: 5px;
  font-size: 0.75rem;
}

.success-message.small {
  font-size: 12px;
}

.form-error-message {
  display: none;
  color: red;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

.border {
  border: 1px solid var(--error);
}

.center {
  text-align: center;
  display: flex;
  justify-content: center;
}

.pointer {
  cursor: pointer;
}

.none,
.order-billing-wrapper {
  display: none;
}

.newsletter-sbm-message {
  color: green;
  display: none;
  margin-top: 5px;
}

.display-flex {
  display: flex;
}

.display-align-center {
  align-items: center;
}

.display-between {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.form-userreg-success-message {
  display: none;
  color: var(--sucess);
}

.cart-error,
.form-error-message {
  display: none;
  color: var(--error);
  font-size: 14px;
}

.cart-pini-wrapper {
  position: relative;
}

.cart-pini-itens {
  display: none;
  position: absolute;
  background: white;
}

:root {
  --error: #c60f13;
  --sucess: green;
  --pink: #c1608d;
  --darkpink: #8f4769;
  --white: #ffffff;
  --dirtywhite: #f2f2f2;
  --verdecinza: #edf2ee;
  --lightgrey: #ccc;
  --cinza60: #a1a1a0;
  --grey: #8e8e8e;
  --text: #808080;
  --darkgrey: #4d4c4c;
  --title: #111111;
  --black: #000000;
  --purple: #7e2a52;
  --purple-hover: #ae4b7b;
}

label.error {
  color: var(--error);
  margin-top: 5px;
  font-weight: initial;
  font-size: 85%;
  display: block;
}

/*personalizado*/
body {
  margin: 0;
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: normal;
}

.grid-container {
  max-width: 1290px;
  margin: 0 auto;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  box-sizing: border-box;
}

/*barra rosa*/
.banner-top-promo {
  background-color: var(--pink);
  height: 40px;
  line-height: 40px;
  width: 100%;
  overflow: hidden;
}

/* Inner container styles */
.scrolling-text-inner {
  display: flex;
  white-space: nowrap;
  font-size: 14px;
  text-align: center;
  color: var(--white);
}

/* Text styles */
.scrolling-text {
  display: flex;
}

.scrolling-text-item {
  padding: 0 100px;
}

/* Apply the animation to the text items */
.scrolling-text-inner > div {
  animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-text-container:hover .scrolling-text-inner > div {
  animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

/*barra rosa end*/

header {
  padding: 45px 0;
  background: var(--dirtywhite);
}

/*menu*/
.menu-list {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
}

.menu-list a:hover:after {
  transform: scaleX(1);
  /*  transform-origin: 0% 50%;*/
}

.menu-list a {
  color: var(--title);
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0 20px;
}

.menu-list a:hover {
  color: var(--pink);
}

/*menu end*/

.list-icons {
  display: flex;
  justify-content: space-between;
}

.list-icons > div {
  padding: 0 8px;
}

.list-icons > div:last-child {
  padding: 0 0px 0 8px;
}

.search {
  right: 0;
  top: -8px;
}

.search input[type="search"]::-webkit-search-cancel-button,
.search input[type="search"]::-webkit-search-decoration {
  display: none;
}

.search input,
.search input:focus,
.search input:focus-visible {
  border: 1px solid var(--text);
  border-radius: 4px;
  max-width: 558px;
  width: 100vh;
  height: 36px;
  outline: var(--text);
  padding: 0 30px 0 10px;
  color: var(--cinza60);
  font-weight: 600;
}

#search button {
  background-image: url(/i/search-button.svg);
  width: 16px;
  height: 16px;
  background-color: transparent;
  margin-top: 3px;
  right: 20px;
  border: 0;
  background-repeat: no-repeat;
}

#search:nth-child(2) {
  width: 16px;
  height: 16px;
  padding-right: 10px;
}

.show-mobile {
  display: none;
}

.logo {
  text-align: left;
}

.banner img {
  max-height: 720px;
  object-fit: cover;
}

.slick-dots {
  bottom: 30px;
}

.slick-dots li,
.slick-dots li button {
  width: 150px;
  height: 6px;
  padding: 0;
}

.slick-dots li button:before {
  content: "";
  width: 150px;
  height: 6px;
  background-color: var(--white);
  opacity: 1;
}

.slick-dots li button:before:hover {
  width: 150px;
  height: 6px;
}

.slick-dots li.slick-active button:before {
  content: "";
  width: 150px;
  height: 6px;
  background-color: var(--pink);
  opacity: 1;
}

.banner-slide .absolute {
  z-index: 5;
  bottom: 12%;
  width: 100%;
  text-align: center;
}

.banner-slide button {
  background: var(--pink);
  border: 0;
  margin: 0;
  padding: 18px 20px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}

.banner-slide button:hover {
  background: var(--white);
  color: var(--pink);
}

/* marquee */
marquee {
  font-size: 50px;
  font-weight: normal;
  color: var(--grey);
  margin: 30px 0 40px 0;
  padding: 0;
  text-transform: uppercase;
}

marquee span {
  padding-right: 164px;
}

/* marquee end*/

/* produtos home */
h1 {
  color: var(--title);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: normal;
  padding: 0;
  margin: 0;
  line-height: 1.5;
}

h2 {
  color: var(--darkgrey);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: normal;
  padding: 0;
  margin: 0;
  line-height: 1.5;
}

.line-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.seemore a {
  color: var(--darkpink);
  font-size: 14px;
  border-bottom: 1px solid #f0e5eb;
  text-transform: uppercase;
}

.seemore a:hover {
  border-bottom: 1px solid var(--darkpink);
}

.price {
  color: var(--black);
  font-size: 18px;
  line-height: 1.5;
}

.price-promo {
  color: var(--pink);
  font-size: 18px;
  line-height: 1.5;
  margin-top: auto; /* Adicionado 16.07.2024 A.M */
}

.price-strike {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.5;
}

.price-div {
  min-height: 50px;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  box-sizing: border-box;
} /* Adicionado 16.07.2024 A.M */

.product-list-home {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product-list-home2 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.buttons-product {
  display: flex;
  justify-content: space-between;
  margin: 17px 23px 0 23px;
  align-items: center;
}

.product-list-home:hover .buttons-product {
  display: flex;
}

.outlet {
  background-color: var(--pink);
  color: var(--white);
  font-weight: 600;
  padding: 5px 9px;
}

.favourite .fav-on {
  display: none;
}

.favourite:hover .fav-on {
  display: block;
}

.favourite:hover .fav-off {
  display: none;
}

/*
.product-list-home>div:hover .content,
.gallery-cell:hover .content {
  border-left: 1px solid var(--cinza60);
  border-right: 1px solid var(--cinza60);
  border-bottom: 1px solid var(--cinza60);
} 

.content {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  
  padding: 10px 7px 33px 7px;
}
*/

.card-product {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
}

.content {
  padding: 10px 7px 33px 7px;
}

.product-home-img {
  height: fit-content;
}

.top10 {
  margin-top: 2rem;
}

.top20 {
  margin-top: 4rem;
}

.top40 {
  margin-top: 8rem;
}

.top60 {
  margin-top: 12rem;
}

.bottom20 {
  margin-bottom: 4rem;
}

.bottom40 {
  margin-bottom: 8rem;
}

.home-image-product img {
  transform-origin: center;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 281px;
  width: 100%;
  height: auto;
}

.product-list-home > div:hover .home-image-product img {
  transform: scale(1.06);
}

.home-image-product {
  overflow: hidden;
  max-width: 281px;
  width: 100%;
  height: auto;
}

.products {
  flex-grow: 1;
}

/* produtos home end*/

/* Tendencias */
.slick-list .card-product {
  margin: 0 8px;
  max-width: 280px;
}

.slick-list .card-product img {
  max-width: 280px;
}

/* Tendencias end*/

/* Descobrir coleções */
.title_descobrir h1 {
  font-size: 50px;
  font-weight: 400;
  text-align: center;
  color: var(--pink);
  padding-bottom: 2rem;
}

.image-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}

.image-wrapper {
  position: relative;
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay_img p {
  font-size: 24px;
  color: var(--white);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
}

.image-wrapper:hover .overlay_img {
  opacity: 1;
}

.image-wrapper:hover .overlay_img p {
  opacity: 1;
}

/* Descobrir coleções end */

/* EXPLORE oS NOSSoS Produtos */
.slick-list .card-categorie {
  margin: 0 8px;
}

.card-categorie-content h1 {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 3rem;
}

/* EXPLORE oS NOSSoS Produtos end*/

/* SlideShow's homepage*/
.swiper {
  overflow: visible;
  width: 100%;
  height: 100%;
}

.tendencias-swiper .swiper-slide {
  /* TAMANHO MÁXIMO DE CADA CARD-PRODUCT */
  max-width: 282px;
}

.explore-swiper .swiper-slide {
  /* TAMANHO MÁXIMO DE CADA CARD-PRODUCT */
  max-width: 294px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 281px;
  height: auto;
}

.stop-scroll-horziontal {
  width: 100%;
  overflow: hidden;
}

.swiper-button-next-tendencias,
.swiper-button-prev-tendencias,
.swiper-button-next-explore,
.swiper-button-prev-explore {
  transition: all 400ms;
  opacity: 0;
  z-index: 10;
  position: absolute;
  /* HEIGHT DA IMAGEM ESTÁTICA DO SLIDE = 383PX*/
  /* PARA AS ARROWS FICAREM CENTRADAS PELA IMAGEM, e não pela card-product */
  top: calc(383px / 2);
  background-color: white;
  width: 48px;
  height: 48px;
  border-radius: 64px;
  border: 1px solid rgb(226, 226, 226);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-button-next-explore,
.swiper-button-prev-explore {
  /* HEIGHT DA IMAGEM ESTÁTICA DO SLIDE = 322PX*/
  top: calc(322px / 2);
}

.swiper-button-next-tendencias:hover,
.swiper-button-prev-tendencias:hover,
.swiper-button-next-explore:hover,
.swiper-button-prev-explore:hover {
  border: 1px solid rgb(180, 180, 180);
}

.swiper-button-next-tendencias img,
.swiper-button-next-explore img {
  transform: rotate(180deg);
}

.swiper-button-next-tendencias,
.swiper-button-next-explore {
  right: 10px;
}

.swiper-button-prev-tendencias,
.swiper-button-prev-explore {
  left: 10px;
}

.swiper-button-disabled {
  z-index: 0;
  opacity: 0 !important;
}

.tendencias-swiper:hover .swiper-button-next-tendencias,
.tendencias-swiper:hover .swiper-button-prev-tendencias,
.explore-swiper:hover .swiper-button-next-explore,
.explore-swiper:hover .swiper-button-prev-explore {
  opacity: 1;
}

/* SlideShow's homepage end*/

/* Newsletter */
.newsletter-section {
  background-color: var(--dirtywhite);
  margin: 0 auto;
  padding: 80px 20px;
  /*position: relative;*/
  box-sizing: border-box;
}

.newsletter-title {
  font-size: 74px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(193, 96, 141, 0.15);
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: -45px;
  width: 100%;
}

.newsletter-content {
  text-align: center;
}

.newsletter-content h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.newsletter-content p {
  margin-bottom: 20px;
  font-size: 18px;
}

.newsletter-form {
  display: inline-block;
  width: 100%;
  max-width: 955px;
}

.newsletter-form input[type="email"] {
  width: 97.49%;
  padding: 10px;
  margin-bottom: 5px;
  margin-right: 10px;
}

.newsletter-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: start;
}

.newsletter-form button {
  width: 100%;
  padding: 10px 20px;
  background: var(--pink);
  color: var(--white);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  border: 0;
  margin: 0;
}

.newsletter-form button:hover {
  background: var(--darkpink);
}

/* Newsletter end */

/* CaneviGang */
.gang {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.gang h2 {
  font-size: 50px;
  color: var(--pink);
}

.gang p {
  color: var(--title);
  font-size: 18px;
  margin-block-start: 0;
  margin-bottom: 40px;
}

/*.slick-slider-insta {
  display: flex;
  gap: 10px;
  overflow-x: hidden;
}*/

.insta-slider1 {
  flex: 0 0 auto;
  width: 330px;
  margin: 0 10px;
}

.insta-slider1 img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.overlay_insta {
  position: absolute;
  border-radius: 4px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.insta-slider1:hover .overlay_insta {
  opacity: 1;
}

.instagram-icon {
  color: var(--white);
  font-size: 40px;
  width: 30px;
  height: 30px;
}

/* Toking */
.simbols {
  display: flex;
  flex-wrap: wrap;
}

.simbol_delivery {
  display: flex;
  align-items: center;
  width: 21%;
  padding: 0 2%;
}

.icon_simbol {
  padding-right: 15px;
}

.simbols_text {
  text-align: left;
  margin-left: 3%;
  height: 100%;
}

.simbols_text p {
  font-weight: 600;
}

.simbols_text p span {
  font-weight: 500;
  font-size: 14px;
  padding-top: 1rem;
}

/* Toking end */

/* Footer */
.footer_background {
  background: var(--dirtywhite);
  width: 100%;
}

.footer_colunm {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  padding-top: 4rem;
}

.footer_colunm > :first-child {
  width: 35%;
}

.footer_colunm > :last-child {
  width: 65%;
}

.footer_colunm2_1 div {
  padding-bottom: 6px;
}

.footer_colunm2_1 p {
  font-weight: 500;
}

.footer_colunm1 {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.footer_colunm1 div a {
  display: flex;
}

.footer_colunm1 div a img {
  margin-left: 10px;
}

.footer_colunm2 {
  display: flex;
  justify-content: space-between;
}

.footer_colunm2_1 {
  display: flex;
  flex-direction: column;
  width: 33%;
  text-transform: uppercase;
}

.footer_colunm2_1 div a {
  text-decoration: none;
  color: var(--black);
  font-size: 14px;
  margin-block-end: 1em;
}

.footer_colunm a:hover,
.footer_colunm a h2:hover {
  color: var(--pink);
}

.footer_colunm_contact {
  text-transform: initial;
}

.footer_colunm_contact p {
  margin-top: 0;
  padding-top: 0;
  font-size: 14px;
  font-weight: 400;
}

.footer_colunm_contact p a {
  font-size: 14px;
  font-weight: 500;
}

.footer_colunm_contact a {
  font-size: 14px;
  font-weight: 500;
}

.footer_title {
  font-weight: 500;
  color: (--title);
  font-size: 16px;
}

.footer_social {
  gap: 25px;
  display: flex;
}

.last_line {
  display: flex;
  flex-direction: row;
  text-align: center;
  margin-top: 5%;
  font-size: 14px;
  justify-content: space-between;
}

.last_line .pay_delivery {
  display: flex;
  justify-content: center;
}

.pay_delivery p {
  flex-wrap: nowrap;
  display: flex;
}

.last_line .pay_delivery div {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  gap: 10px;
  margin-left: 15px;
  margin-right: 15px;
}

/* Footer end */

/* Breadcrumbs */
.breadcrumbs {
  font-size: 16px;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs span {
  display: flex;
  align-items: center;
}

.separator {
  margin: 0 10px;
  color: #999999;
}

.current-page {
  font-weight: 500;
  color: var(--pink);
  text-transform: capitalize;
  text-wrap: nowrap;
}

/* Breadcrumbs end*/

/*button*/
.btn_pink {
  width: 100%;
  padding: 10px 20px;
  background: var(--pink);
  color: var(--white);
  border-radius: 4%;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  border: 0;
  margin: 0;
}

.btn_pink:hover {
  background: var(--darkpink);
  border-radius: 4%;
}

.btn_white {
  width: 100%;
  padding: 10px 20px;
  color: var(--pink);
  background: var(--white);
  border-radius: 4%;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #c1608d;
  margin: 0;
}

.btn_white:hover {
  color: var(--darkpink);
  border-radius: 4%;
}

/*button end*/

/* Pontos de fidelidade */
.pontos-fidelidade h2 {
  align-items: center;
  font-size: 38px;
  font-weight: 600;
  color: (--title);
  display: flex;
  text-transform: none;
}

.pontos-fidelidade span {
  align-items: center;
  display: flex;
}

.pontos-fidelidade .conteudo {
  margin-top: 10px;
}

.pontos-fidelidade h3 {
  margin-top: 20px;
  color: (--title);
  font-size: 20px;
}

.condiçoes p {
  font-size: 12px;
  margin-top: 40px;
  color: var(--black);
}

.conteudo {
  text-align: justify;
}

.span_img {
  margin-left: 20px;
}

/* Pontos de fidelidade end*/

/*FAQ*/
.faq h2 {
  align-items: center;
  font-size: 38px;
  font-weight: 600;
  color: (--title);
  display: flex;
  text-transform: none;
}

.faq-category {
  margin-bottom: 20px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.faq-category-account {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.faq-category-pay {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.faq-title {
  text-transform: uppercase;
  background-color: var(--dirtywhite);
  border-radius: 5px;
  font-weight: 500;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-item {
  border: 1px solid transparent;
  margin-left: 4rem;
  display: block;
  border-radius: 5px;
}

.faq-question {
  text-transform: uppercase;
  background-color: var(--dirtywhite);
  font-weight: 500;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 10px;
  display: block;
}

.faq-answer {
  padding: 10px;
  display: none;
}

.faq-item.open .faq-question {
  background-color: var(--white);
  color: var(--pink);
  font-weight: 500;
}

.faq-item.open {
  display: block;
  border: 1px solid var(--pink);
  border-radius: 5px;
}

.faq-item.open .faq-answer {
  display: block;
  border-top: 1px solid var(--pink);
}

.faq-category.open .faq-item {
  display: block;
}

/*FAQ end*/

/*sobre nós*/
.sobre {
  display: flex;
  gap: 20px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.sobre1 {
  display: flex;
  gap: 40px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.sobre_text {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre_text h2 {
  align-items: center;
  font-size: 38px;
  font-weight: 600;
  color: (--title);
  display: flex;
}

.sobre_text h2 span {
  color: var(--pink);
  margin-left: 10px;
}

.sobre_text p {
  text-align: justify;
}

.sobre_img img {
  max-width: 100%;
  height: auto;
  width: 100%;
  max-height: 500px;
}

.degrade_sobre {
  background-image: linear-gradient(to right, #ec76ad, var(--white), var(--white));
  width: 100%;
}

.sobre_logo {
  margin-right: 50px;
  width: 100%;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.sobre_logo img {
  max-width: 408px;
}

.sobre_text1 {
  width: 100%;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre_text1 h3 {
  font-size: 40px;
  font-weight: 500;
  align-items: center;
}

.sobre_text1 .btn_pink {
  max-width: 200px;
  border-radius: 4%;
}

.sobre_text1 button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

.sobre_text1 button span {
  margin-left: 15px;
}

/*sobre nós end*/

/*Login*/
.login-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

.login-form h2 {
  font-size: 36px;
  color: var(--pink);
  text-align: center;
  margin-bottom: 2rem;
}

.keeplogin-wp span {
  font-size: 14px;
}

.keeplogin-wp {
  display: flex;
  gap: 5px;
}

.social-btn {
  display: flex;
  gap: 10px;
}

.social-button {
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: #c1608d41;
  color: (--title);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  border-radius: 4%;
}

.social-button.facebook {
  background-color: #c1608d41;
}

.login-form p {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.line-login {
  display: inline-block;
  width: 50px;
  height: 0.5px;
  background-color: var(--black);
  margin: 0 10px;
}

.form_div_terms label {
  margin-bottom: 8px;
  margin-top: 0;
}

.form_div {
  width: 99.8%;
  height: 68px;
}

.form_div label {
  margin-top: 0;
}

.form_div1 input {
  max-width: 500px;
  width: calc(99.8% - 20px);
  padding: 10px;
  border: 1px solid var(--lightgrey);
  border-radius: 5px;
  height: 17px;
  margin-bottom: 8px;
}

.form_div .absolute {
  top: 20px;
  right: 10px;
}

.form_div .eye-icon {
  left: auto;
  transform: translateY(-50%);
  cursor: pointer;
}

.info_login p {
  font-size: 16px;
}

.info_login p a {
  color: var(--pink);
  padding-left: 5px;
}

.info_login .terms {
  font-size: 13px;
  justify-content: center;
}

.info_login .terms a {
  color: var(--black);
  font-size: 14px;
  flex-wrap: nowrap;
  display: flex;
  padding-left: 5px;
  padding-right: 5px;
  flex-wrap: wrap;
  text-decoration: underline;
}

/*Login end*/

/*Area Reservada - dashboard */
.area_reservada {
  display: flex;
  gap: 10px;
}

.navegação {
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
  max-width: 260px;
  width: 100%;
  height: 100%;
}

.navegação h2 {
  color: var(--title);
  font-size: 20px;
  font-weight: 500;
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lightgrey);
}

.menu_area img,
.menu_area-on img {
  padding-right: 10px;
}

.menu_area:hover #img-off {
  display: none;
}

.menu_area:hover #img-on {
  display: block !important;
}

.menu_area {
  border-left: 2px solid transparent;
}

.menu_area:hover,
.menu_area-on {
  background-color: var(--verdecinza);
  border-left: 2px solid var(--pink);
  color: var(--black);
}

.menu_area,
.menu_area-on {
  display: flex;
  padding: 18px 0 18px 18px;
  text-decoration: none;
  color: var(--grey);
}

.menu_area-on {
  color: black;
}

.menu_area-off {
  display: none;
}

.mobile_nav_area {
  padding-bottom: 16px;
}

.account {
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

/* Estilos para os campos de detalhes da conta */
.account-details {
  width: 100%;
  margin-top: 20px;
  margin: 0 auto;
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
}

.account-details h2 {
  color: var(--title);
  font-weight: 500;
  font-size: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--lightgrey);
}

.account-details-input {
  width: 60%;
}

.account-details-flex {
  display: flex;
  gap: 20px;
  padding-top: 1rem;
  padding: 20px;
}

.account-details-flex-text {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.account-details-input label {
  font-size: 14px;
}

.account label.error {
  font-size: 13px;
  margin-top: 0;
}

.account .nodiverror {
  margin-bottom: 30px;
}

.account-details .btn_area {
  padding-left: 20px;
  padding-bottom: 20px;
}

.account-details-input div {
  /*margin-bottom: 1rem;*/
}

.account-details-input div input {
  width: calc(100% - 21px);
  border: 1px solid var(--lightgrey);
  border-radius: 6px;
  margin-top: 0.5rem;
}

.pic_account {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.pic_account .btn_white {
  width: 50%;
  min-width: 180px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

/* Estilos para a seção de endereço de entrega */
.delivery-address {
  width: 100%;
  margin-top: 20px;
  margin: 0 auto;
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
}

.delivery-address h2 {
  color: var(--title);
  font-weight: 500;
  font-size: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--lightgrey);
}

.delivery-address .btn_area {
  padding-left: 20px;
  padding-bottom: 20px;
}

.delivery-address-flex {
  padding-top: 1rem;
  padding: 20px;
}

.delivery-address-flex div {
  /*margin-bottom: 1rem;*/
}

.delivery-address-flex div input {
  width: calc(100% - 21px);
  border: 1px solid var(--lightgrey);
  border-radius: 6px;
  margin-top: 0.5rem;
}

.delivery-address-flex .estilo_sel_country {
  width: calc(100% - 21px);
  border: 1px solid var(--lightgrey);
  border-radius: 6px;
  margin-top: 0.5rem;
  min-height: 35px;
  background: white;
  width: 100%;
}

.address-flex {
  display: flex;
  gap: 10px;
  width: 100%;
}

.address-flex div {
  width: 100%;
}

/* Estilos para a seção de alteração de senha */
.password-change {
  width: 100%;
  margin-top: 20px;
  margin: 0 auto;
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
}

.password-change h2 {
  color: var(--title);
  font-weight: 500;
  font-size: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--lightgrey);
}

.password-change .btn_area {
  padding-left: 20px;
  padding-bottom: 20px;
}

.password-change-flex {
  padding-top: 1rem;
  padding: 20px;
}

.password-change-flex div {
}

.password-flex .relative {
  margin-bottom: 1rem;
}

.password-change-flex div input {
  width: calc(100% - 21px);
  border: 1px solid var(--lightgrey);
  border-radius: 6px;
  padding: 10px;
  margin-top: 0.5rem;
}

.password-flex {
  display: flex;
  gap: 10px;
  width: 100%;
  position: relative;
}

.password-flex div {
  width: 100%;
}

.password-flex .eye-icon {
  position: absolute;
  top: 43px;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.password-flex .eye-icon1 {
  position: absolute;
  top: 43px;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.account-details button,
.delivery-address button,
.password-change button {
  width: 120px;
  height: 45px;
  font-size: 14px;
  font-weight: 500;
}

/*Area Reservada - dashboard end*/

/*Area Reservada - portabilidade*/
.data-details {
  width: 100%;
  margin-top: 20px;
  margin: 0 auto;
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
}

.data-details h2 {
  color: var(--title);
  font-weight: 500;
  font-size: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--lightgrey);
  display: flex;
  justify-content: space-between;
}

.data-details h2 button {
  border: none;
  background-color: none;
}

.data-details .btn_portabilidade {
  width: 100%;
  max-width: 230px;
  padding-left: 20px;
  padding-bottom: 20px;
}

/*Area Reservada - portabilidade end*/

/*Area Reservada - histórico*/
.historic {
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.historic1 {
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.historic1 .data-details h2 {
  text-transform: capitalize;
}

.historic_about {
  display: flex;
  gap: 10px;
}

.historic_about .data-details {
  width: 100%;
  padding: 20px;
}

.historic_about .data-details .pic_account {
  width: 100%;
}

.historic_about .data-details .pic_account img {
  width: 130px;
  height: 130px;
}

.historic a {
  color: var(--pink);
  text-decoration: none;
  justify-content: flex-end;
  display: flex;
}

.historic .btn_historic {
  max-width: 370px;
  margin-top: 3rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.historic .btn_historic button {
  padding: 20px 20px;
}

.data-details .billing {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.data-details div h4 {
  font-size: 16px;
  color: var(--grey);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0;
}

.data-details div .name {
  font-size: 18px;
  color: var(--title);
  font-weight: 500;
}

.data-details div .address {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
}

.data-details div .mail {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
}

.data-details div .number {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
}

.data-details table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 40px;
}

.data-details th,
.data-details td {
  padding: 15px 20px 15px 20px;
  text-align: left;
}

.data-details th {
  background-color: #f2f2f2;
  font-weight: 400;
}

.data-details td {
  font-weight: 400;
  font-size: 14px;
}

/*Area Reservada - histórico end*/
/*Area Reservada - histórico 2*/
.historic_tittle h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.historic_tittle h2 span {
  font-size: 14px;
  margin-left: 10px;
}

.historic_tittle h2 a {
  font-size: 16px;
}

.data_3 {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.data_3 .data_billing {
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
  width: 100%;
}

.data_3 .data_billing_0 {
  padding: 20px 10px;
}

.data_3 .data_billing_0 .btn-showcart {
  margin-top: 10px;
  max-height: 40px;
  font-size: 14px;
}

.data_3 .data_billing h3 {
  border-bottom: 1px solid var(--lightgrey);
  margin: 0;
  min-height: 45px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.data_3 .data_billing p {
  margin-block-end: 0;
  margin-block-start: 0;
}

.data_3 .data_delivery {
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
  width: 100%;
}

.data_3 .data_delivery_0 {
  padding: 20px 10px;
}

.data_3 .data_delivery_1 {
  padding-top: 20px;
}

.data_3 .data_delivery h3 {
  border-bottom: 1px solid var(--lightgrey);
  margin: 0;
  min-height: 45px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.data_3 .data_delivery p {
  margin-block-end: 0;
  margin-block-start: 0;
}

.data_3 .data_payment {
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
  width: 100%;
}

.data_3 .data_payment .data_payment_title {
  border-bottom: 1px solid var(--lightgrey);
  min-height: 45px;
  display: flex;
  align-items: center;
}

.data_3 .data_payment .data_payment_title div h3 {
  margin-block-end: 0;
  margin-block-start: 0;
}

.data_3 .data_payment .data_payment_text {
  justify-content: space-between;
}

.data_payment_text .price_discount {
  padding: 0px 30px 20px 30px;
}

.data-details .price_discount.total {
  padding: 0px 20px 20px 20px;
}

.price_discount {
  display: flex;
  justify-content: space-between;
  padding: 20px 10px;
}

.price_color {
  color: var(--grey);
  font-size: 14px;
}

.data_payment_title {
  display: flex;
  justify-content: space-around;
}

.data_payment_title h3 {
  width: 100%;
}

.data_payment_title .line {
  height: 35px !important;
  border: 1px solid var(--cinza60);
  width: 0;
  margin: auto 0;
}

.data_3 .data_payment .data_payment_text .line {
  margin-bottom: 0;
}

.form-steps {
  justify-content: center;
  display: flex;
  width: 100%;
  position: relative;
  margin: 0 0 60px 0;
}

.form-steps__item {
  padding: 0;
  position: relative;
  display: block;
  float: left;
  width: 100%;
  text-align: center;
  font-size: 14px;
}

.form-steps__item-content {
  display: inline-block;
}

.form-steps__item--active .form-steps__item-icon {
  background-color: var(--pink);
  color: var(--white);
}

.form-steps__item-icon {
  background: var(--dirtywhite);
  color: var(--pink);
  display: flex;
  border-radius: 100%;
  text-align: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 15px auto;
  position: relative;
  font-weight: 600;
  z-index: 2;
  border: 1px dashed var(--pink);
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.form-steps__item--completed .form-steps__item-icon {
  background: var(--pink);
  background-image: url("../i/certo_3passos.svg");
  color: transparent;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 40px;
  height: 40px;
  line-height: 25px;
}

.form-steps__item-line {
  display: inline-block;
  height: 10px;
  width: 100%;
  background: rgba(217, 217, 217, 0.5);
  position: absolute;
  left: -50%;
  top: 15px;
  z-index: 1;
}

.form-steps__item--active .form-steps__item-line {
  background: var(--pink);
}

.form-steps:after {
  content: "";
  display: table;
  clear: both;
}

/*Area Reservada - histórico 2 end*/

/*Area Reservada - favoritos*/
.fav_product {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile_historic .fav_btn {
  width: 100%;
  padding: 3px 10px;
  background: var(--pink);
  color: var(--white);
  border-radius: 4%;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  border: 0;
  margin: 0;
  align-items: center;
  display: flex;
  justify-content: space-around;
  max-width: 120px;
}

.mobile_historic .fav_btn:hover {
  background: var(--darkpink);
  border-radius: 4%;
}

.mobile_historic .fav_btn_semstock {
  background: var(--cinza60);
  width: 100%;
  padding: 3px 10px;
  color: var(--white);
  border-radius: 4%;
  font-weight: 500;
  font-size: 16px;
  border: 0;
  margin: 0;
  align-items: center;
  display: flex;
  justify-content: space-around;
}

.mobile_historic table .prodtext {
  width: 50%;
}
.mobile_historic table .price {
  width: 22%;
  text-align: right;
  font-size: 16px;
}
.mobile_historic table .btncart {
  width: 25%;
}
.mobile_historic table .btnclose {
  width: 3%;
}

.exit_btn {
  border: 0;
  background-color: transparent;
}

.color_comstock {
  color: green;
}

.color_semstock {
  color: black;
}

.promo_color {
  color: var(--cinza60);
  text-decoration: line-through;
  font-size: 13px;
}

.promo_price {
  color: var(--pink);
  padding-left: 15px;
}

.fav {
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

/*Area Reservada - favoritos end*/

/*Listagem de Produtos*/
.product_list {
  display: flex;
  gap: 50px;
}

.filters {
  max-width: 280px;
  width: 100%;
  min-width: 280px;
}

.filters_box .header button {
  display: flex;
  gap: 20px;
  color: var(--pink);
  align-items: center;
}

.filters_box .header button h3 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 20px;
}

.filters_box .header button {
  border: 0;
  background: transparent;
}

.categorias {
  gap: 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.categorias .header_div {
  display: flex;
  justify-content: space-between;
}

.categorias .header_div h3 {
  font-size: 20px;
  font-weight: 500;
}

.appear_product {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

.appear_product p {
  margin: 0;
}

.appear_product p span {
  color: var(--cinza60);
}

.categorias .checkmark {
  appearance: none;
  transition: none;
}

.checkbox_pink input {
  width: 0;
  opacity: 0;
  position: absolute;
}

.checkbox_pink input + .checkmark {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  display: inline-block;
  height: 18px;
  margin-right: 10px;
}

.checkbox_pink input + .checkmark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--pink);
  /* Alterei a cor do contorno para rosa */
  background-color: var(--white);
  border-radius: 2px;
}

.checkbox_pink input:checked + .checkmark::before {
  content: "\2713";
  color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  text-align: center;
  background-color: var(--pink);
  border: 1px solid var(--pink);
}

.radio_pink input {
  opacity: 0;
  width: 0px;
  position: absolute;
}

.radio_pink input + .checkmark {
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  display: inline-block;
  height: 18px;
  margin-right: 5px;
}

.radio_pink input + .checkmark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--pink);
  /* Alterei a cor do contorno para rosa */
  background-color: var(--white);
  border-radius: 50px;
}

.radio_pink input:checked + .checkmark::before {
  content: "";
  position: absolute;
  background-color: var(--pink);
  border: 1px solid var(--pink);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radio_pink input:checked + .checkmark::after {
  content: "";
  position: absolute;
  border: 1px solid var(--pink);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

.price_interval {
  position: relative;
  width: 100%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  height: 40px;
  margin: auto;
  margin-bottom: 25px;
}

input[type="range"] {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  height: 10px;
  width: 100%;
  opacity: 0;
}

.price_slider {
  position: relative;
  z-index: 1;
  height: 8px;
}

.price_slider > .track {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background: #e6e6e6;
}

.price_slider > .range {
  position: absolute;
  z-index: 2;
  left: 25%;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background: var(--pink);
  cursor: not-allowed;
}

.price_slider > .thumb.left {
  left: 25%;
  transform: translate(-10px, -10px);
}

.price_slider > .thumb.right {
  right: 25%;
  transform: translate(-20px, -10px);
}

.price_slider > .thumb {
  position: absolute;
  z-index: 4;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 4px solid var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(98, 0, 238, 0.1);
  transition: box-shadow 0.3s ease-in-out;
  cursor: pointer;
}

#input-left,
#input-right {
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  width: 30px;
  height: 30px;
  border-radius: 0;
  border: 0 none;
  background-color: red;
  -webkit-appearance: none;
}

.price_slider input[type="range"] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 2;
  height: 10px;
  width: 100%;
  opacity: 0;
}

.price_interval_data {
  padding-top: 15px;
}

.line {
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.products .show_options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.show_options select {
  padding: 10px 5px;
  border: 1px solid var(--lightgrey);
  border-radius: 4px;
  background-color: white;
  margin-left: 10px;
  color: var(--darkgrey);
}

.show_options .show_results {
  color: var(--grey);
}

.show_options .show_results span {
  color: var(--black);
  font-weight: 600;
}

.products .btn_historic {
  max-width: 370px;
  display: flex;
  margin: auto;
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.expanded {
  position: relative;
}

.filtermobile {
  width: 100%;
}

.btn_filtromobile {
  display: none;
  width: 100%;
  gap: 20px;
}

.btn_filtromobile button {
  width: 100%;
  border-radius: 20px;
  flex-wrap: nowrap;
  padding: 15px 0 15px 0;
  border: 2px solid var(--pink);
  color: var(--pink);
}

.btnclose_filtromobile button {
  border: none;
  background: none;
  display: flex;
  margin-left: auto;
}

/*Listagem de Produtos end*/

/*Pag de Produto*/
.product_page {
  display: flex;
  gap: 40px;
}

.product_page_img {
  display: flex;
  width: 100%;
  max-width: 568px;
  gap: 10px;
}

.thumb-image {
  padding-bottom: 8px;
}

.big {
  max-width: 452px;
  width: 100%;
}

.thumbs {
  max-height: 678px;
  max-width: 106px;
  width: 100%;
}
/*
.thumbs img {
  max-width: 108px;
  width: 100%;
  height: auto;
  margin: auto;
}*/

.big img {
  width: 100%;
  height: auto;
}

.product-details {
  width: 100%;
}

.product-details .product-info h1 {
  font-size: 28px;
  font-weight: 600;
  justify-content: space-between;
  display: flex;
}

.product-details .product-info div {
  margin-bottom: 1rem;
}

.product-details .product-info p {
  color: var(--cinza60);
  margin-block-start: 0;
}

.product-details .product-info div p {
  color: var(--text);
}

.product-details .product-info div p span {
  color: var(--black);
  font-weight: 600;
}

.product-details .product-info .ref_product {
  font-weight: 400;
  color: var(--cinza60);
}

.product-info .price_product .price_product_normal {
  font-size: 24px;
  font-weight: 600;
  color: var(--pink);
  margin: 0;
  margin-block-end: 0;
}

.product-info .price_product .price_product_sale {
  margin-block-start: 2em;
  margin-block-end: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: line-through;
}

.product-details .product-options p {
  color: var(--text);
}

.color_cat {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}

.color_cat_dot {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
}

.color_cat_dot:hover {
  transform: scale(1.05);
}

.color_cat_dot input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.color_cat_dot input[type="radio"]:checked + .white_dot::after {
  content: "\2713";
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.75);
}

.product_size {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.product_size_option {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product_size_option p {
  margin: 0;
  font-size: 18px;
}

.size-option {
  display: flex;
  align-items: center;
  background: #faebf2;
  border-radius: 10px;
  padding: 5px 8px 5px 8px;
}

.selected {
  background-color: #000;
  color: #fff;
}

.product_size_option input[type="radio"] {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.counter {
  max-width: 160px;
}

.product-details .counter_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 150px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 24px;
}

.counter input[type="number"] {
  width: 100%;
  text-align: center;
  border: none;
  min-width: 30px;
}

.counter input[type="number"]::-webkit-inner-spin-button,
.counter input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product_btn {
  width: 100%;
  display: flex;
  max-width: 100%;
  gap: 10px;
  margin-bottom: 1rem;
}

.product_btn button {
  border: none;
}

.product_btn_div {
  display: flex;
  width: 100%;
}

.product_btn .counter {
  border: 1px solid var(--lightgrey);
  border-radius: 50px;
  padding: 0 10px 0 10px;
  height: 50px;
  background: none;
  align-items: center;
  display: flex;
}

.product_btn .counter button {
  border-radius: 50px;
  background: none;
}

.btn_carrinho {
  width: 100%;
  background: var(--pink);
  color: var(--white);
  font-weight: 500;
  gap: 15px;
  display: flex;
  align-content: center;
  align-items: center;
  font-size: 1;
  font-size: 16px;
  justify-content: center;
  height: 52px;
}

.btn_carrinho:hover {
  background: var(--darkpink);
}
.btn_carrinho1 {
  width: 100%;
  background: var(--pink);
  color: var(--white);
  font-weight: 500;
  gap: 15px;
  display: flex;
  align-content: center;
  align-items: center;
  font-size: 1;
  font-size: 16px;
  justify-content: center;
  height: 52px;
  max-width: 180px;
}

.btn_carrinho1:hover {
  background: var(--darkpink);
}

.product_btn_div .btn_wishlist {
  background: none;
}

.two_categories {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.two_categories a {
  border-bottom: 2px solid transparent;
  padding-bottom: 12px;
  width: 250px;
  text-align: center;
  font-weight: 600;
  color: var(--lightgrey);
}

.two_categories a.active {
  color: var(--black);
  border-bottom: 2px solid #c1608d;
  padding-bottom: 12px;
}

.info_product_description1 {
  display: none;
}

.info_product .info_product_description1 p span {
  color: var(--darkgrey);
  margin-left: 10px;
  font-size: 14px;
}

.info_product .info_product_description1 p .stock_number {
  color: var(--lightgrey);
  margin-left: 5px;
}

.info_product_desc {
  min-height: 180px;
}

/*Pag de Produto end*/
/*Carrinho-passo*/
.page_ h1 {
  align-items: center;
  font-size: 38px;
  font-weight: 600;
  color: (--title);
  display: flex;
  text-transform: none;
}

.cart_page {
  width: 100%;
  display: flex;
  gap: 30px;
}

.cart_page1 {
  width: 70%;
  padding-top: 20px;
}

.cart_page1 .c_product {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
  border-collapse: separate;
  border-spacing: 0;
}

.box_c_product .c_product .cart_title {
  display: flex;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--lightgrey);
}

.cart_product {
  border-bottom: 1px solid var(--lightgrey);
  border-width: 70%;
}

.cart_product .div_img_product img {
  max-width: 52px;
  height: auto;
}

.box_c_product .cart_product:last-child {
  border-bottom: none;
}

.box_c_product .c_product .cart_product_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: relative;
}

.cart_product_1 .price {
  min-width: 120px;
  text-align: center;
  font-size: 16px;
}

.cart_product_1 .ex {
  margin-bottom: 30px;
}

.cart_product .cart-error {
  padding-left: 20px;
  padding-bottom: 10px;
  font-size: 14px;
}

.c_product .counter_div button {
  border: none;
  background: none;
}

.c_product .counter {
  max-width: 140px;
}

.c_product .counter_div {
  display: flex;
  border: 1px solid var(--cinza60);
  border-radius: 40px;
  align-items: center;
  justify-content: space-between;
  width: 150px;
  max-width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 24px;
}

.cart_product .counter_div {
  max-width: 125px;
}

.c_product .counter input[type="number"] {
  width: 100%;
  text-align: center;
  border: none;
}

.c_product .counter input[type="number"]::-webkit-inner-spin-button,
.counter input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.c_product button {
  border: none;
  background: none;
}

.product_imgandtitle .c_product_box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.c_product_detail h4 {
  margin: 0;
  color: var(--black);
  font-weight: 400;
}

.c_product_detail p {
  color: var(--black);
}

.c_product_detail_extra {
  margin-left: 20px;
  width: 206px;
  max-width: 206px;
  width: 100%;
}

.c_product_detail_extra h5 {
  margin-top: 0;
}

.product_imgandtitle .btn_p_more p {
  /*margin-left: 88px;
  margin-top: -20px;*/
  font-size: 14px;
  margin-bottom: 0;
}

.product_imgandtitle .btn_p_more p img {
  padding-right: 6px;
}

.promo_code {
  width: 100%;
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 30px;
  padding: 15px 0 15px 0;
}

.promo_code p {
  width: 30%;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 500;
}

.promo_code div {
  width: 70%;
  display: flex;
  height: 52px;
}

.promo_code div input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px 0 0 10px;
  max-width: 500px;
}

.promo_code div button {
  min-width: 165px;
  border: none;
  background: var(--pink);
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  border-radius: 0 10px 10px 0;
}

.order_voucher .promo_code div {
  width: 100%;
}
.order_voucher .promo_code {
  padding: 0;
}
.order_voucher .promo_code p {
  display: none;
}

.promo_code div button {
  max-width: 120px;
  width: 100%;
  min-width: unset;
}

.cart_page2 {
  width: 30%;
  max-width: 425px;
  padding-top: 20px;
}

.cart_page2 .cart_end {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.cart_end .cartline {
  justify-content: space-between;
  display: flex;
  padding-right: 15px;
  padding-left: 15px;
}

.cart_end .cart_values_total {
  justify-content: space-between;
  display: flex;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 15px;
}

.cart_end h5 {
  padding: 10px;
  font-size: 20px;
  font-weight: 500;
  margin-block-start: 0em;
  margin-block-end: 0.5em;
}

.cart_page2 .cart_end_finalize button {
  width: 100%;
  margin-top: 20px;
  border: none;
  height: 52px;
  background: var(--pink);
  color: var(--white);
  border-radius: 8px;
}

.box_c_product .c_product .cart_title .cart_title1 {
  width: 42%;
}

.box_c_product .c_product .cart_title .cart_title2 {
  width: 22%;
}

.box_c_product .c_product .cart_title .cart_title3 {
  width: 26%;
}

.box_c_product .c_product .cart_title .cart_title4 {
  width: 18%;
}

.only_mobile_product {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-self: center;
  padding-bottom: 30px;
  padding-left: 30px;
}

.only_mobile_product div {
  align-self: center;
}

.product_imgandtitle {
  width: 52%;
}

/*Carrinho-passo end*/
/*Carrinho-passo2*/
.cart_page1 h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.cart_page1 .name div {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cart_page1 .name {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  gap: 20px;
}

.cart_page1 form .name div {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.cart_page1 .address_car {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.cart_page1 .city_car {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  gap: 20px;
}

.cart_page1 .city_car div {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.cart_page1 .contact_car {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  gap: 20px;
}

.cart_page1 .contact_car div {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.cart_page1 .diferent_car {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  gap: 10px;
}

.cart_page1 .addinfo {
  border-radius: 8px;
  border: 1px solid var(--lightgrey);
  min-width: calc(100% - 20px);
  max-width: calc(100% - 20px);
  max-height: 20vh;
  min-height: 10vh;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  resize: vertical;
}

.checkbox_billing {
  padding-bottom: 1rem;
}

.order_dados .error {
  font-size: 14px;
}

.cart_page1 h2 {
  margin-bottom: 20px;
  align-items: center;
  font-size: 26px;
  font-weight: 400;
  display: flex;
  text-transform: none;
  color: var(--title);
}

.cart_page1 .form1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart_page1 .form1 div {
  width: 100%;
}

.cart_page1 .form1 div input {
  height: 60px;
}

.cart_page1 label {
  padding-bottom: 8px;
}

.cart_page1 label span {
  padding-left: 5px;
  font-size: 0.8rem;
  color: rgb(153, 153, 153);
}

.cart_page1 input {
  border-radius: 8px;
  border: 1px solid var(--lightgrey);
}

.cart_page1 .counter_div input {
  max-width: 35px;
  min-width: 35px;
  height: 30px;
  text-align: center;
  padding: 0;
}

.cart_page1 select {
  border-radius: 8px;
  border: 1px solid var(--lightgrey);
  height: 40px;
  width: 100%;
  background: white;
}

.product_car {
  display: flex;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 2rem;
  align-items: center;
  justify-content: space-between;
}

.product_car_img {
  display: flex;
  gap: 10px;
  margin-right: 10px;
}

.product_car_imgandtext {
  display: flex;
  align-items: center;
}

.product_car_imgandtext p {
  margin-block-start: 0;
  margin-block-end: 0;
  justify-content: center;
  align-items: center;
}

.product_car_imgandtext img {
  margin-right: 10px;
}

.product_car_qty {
  align-items: center;
  margin-block-start: 0;
  display: flex;
  margin-block-end: 0;
}

.form-container {
  max-width: 300px;
  margin: 20px auto;
}

.payment_methods {
  padding-right: 15px;
  padding-left: 15px;
}

.form-container form .form-container1 {
  display: flex;
  gap: 10px;
  width: 100%;
}

.form-container form .form-container2 {
  width: 100%;
}

.form-container form .form-container1 .form-c {
  width: 80%;
}

.form-container form .form-container1 .form-co {
  width: 20%;
}

.form-container form .form-container1 .form-c input {
  width: 90%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-container form .form-container1 .form-c input:focus {
  outline: none;
  border-color: var(--pink);
}

.form-container form .form-container1 .form-co input {
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-container form .form-container1 .form-co input:focus {
  outline: none;
  border-color: var(--pink);
}

.input-group {
  margin-bottom: 10px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-container2 .input-group input {
  width: 93%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.input-group input:focus {
  outline: none;
  border-color: var(--pink);
}

.form-container {
  display: none;
}

.form-container.active {
  display: flex;
}

/*Carrinho-passo2 end*/
/*Cookies*/
.cookie-popup {
  display: flex;
  gap: 30px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8f8f8;
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 10px rgba(241, 189, 228, 0.2);
  text-align: center;
  z-index: 5;
}

.cookie-popup .cookie-popup-text {
  width: 80%;
  padding: 20px;
}

.cookie-popup .cookie-popup-btn {
  width: 20%;
  padding: 20px;
  gap: 10px;
  align-items: center;
  display: flex;
  justify-content: center;
}

#accept-cookie-btn,
#exit-cookie-btn {
  padding: 10px 20px;
  cursor: pointer;
}

#accept-cookie-btn {
  background-color: var(--pink);
  color: #fff;
  border: 1px solid var(--pink);
}

#exit-cookie-btn {
  background-color: var(--dirtywhite);
  border: 1px solid var(--pink);
  color: var(--pink);
}

/*Cookies end*/

/* contact-form */

.contact-form .btn_pink {
  margin-top: 20px;
}

.container-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.column-form {
  flex: 1;
  margin-right: 0;
}

.column:last-child {
  margin-right: 0;
}

.contact-form {
  padding: 10px;
  border-radius: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 100px;
}

.contact-form label {
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
}

.column-form-st a {
  color: var(--pink);
}

.column-form-st {
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
  align-items: center;
}

.column-form-st-media {
  display: flex;
  flex-direction: column;
}

.column-form-st-media a {
  color: var(--pink);
  margin-bottom: 5px;
}

.column-form-st-text {
  width: 80%;
}

.tel-form {
  font-size: 12px;
}

.column-form-st-media-text {
  margin-block-start: 0;
}

.rgpd {
  margin-top: 5px;
  margin-bottom: 15px;
  height: 30px;
}

.rgpd label {
  display: flex;
}

.rgpd label span {
  margin-left: 5px;
  color: var(--pink);
}

.rgpd label span a {
  color: var(--pink);
}

.promotion .content {
  /*width: 268px;*/
}

.content h1 {
  min-height: 54px;
}

/* Área de utilizador: input */

.pic_account input {
  display: none;
}

.file-name {
  margin-left: 10px;
}

.profile-pic.empty {
  background-color: var(--lightgrey);
}

.user_session .profile-pic {
  max-width: 22px;
  max-height: 22px;
}

/* Wishlist */

.shop_circle {
  position: absolute;
  top: -5px;
  right: -1px;
  background-color: black;
  color: white;
  min-width: 14px;
  min-height: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 2px;
  font-size: 10px;
}

.faded_red {
  background-color: #db324d;
}

.wsl_img {
  position: relative;
}

#plk-wishlist-list-wp {
  width: 100%;
}

#plk-product-list {
  position: relative;
  height: 100%;
  padding-bottom: 58px;
  width: 100%;
}

.btn_mostrarmais {
  position: absolute;
  bottom: 4rem;
  max-width: 370px;
  margin: auto;
  display: flex;
  justify-self: center;
  justify-content: center;
}

.btnclose_filtromobile {
  display: none;
}

.arrow-up,
.arrow-down {
  cursor: pointer;
}

.filters_box ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.product_stock_reg {
  display: flex;
  width: 100%;
  gap: 20px;
  align-items: center;
}

.btn_wishlist img {
  max-width: 50px;
  height: auto;
}

.wishlist_btn {
  display: flex;
  align-items: center;
  background: #faebf2;
  width: 52px;
  height: 52px;
  justify-content: center;
}

.card-product {
  max-width: 281px;
  width: 100%;
  height: auto;
}

/*
.card-product .content:hover {
  border-left: 1px solid var(--cinza60);
  border-right: 1px solid var(--cinza60);
  border-bottom: 1px solid var(--cinza60);
} */

.card-product:hover {
  border-left: 1px solid var(--cinza60);
  border-right: 1px solid var(--cinza60);
  border-bottom: 1px solid var(--cinza60);
  border-top: 1px solid var(--cinza60);
}

#plk-order-billing-address2 {
  display: none;
}

.payment-label {
  display: flex;
  margin-bottom: 10px;
}

/*  Angela - 18/06/2025   ----------------///////*/
.payment-label.radio_pink {
  border: 1px solid pink;
  padding: 25px 15px;
  border-radius: 5px;
  gap: 7px;
}

.radio_pink .payment_method .payment_cost {
  padding-left: 0;
}
.radio_pink .rad-image {
  width: 80px;
  padding-right: 12px;
}
.radio_pink .rad-image img {
  width: auto;
  height: auto;
  max-height: 65px;
}
.radio_pink .rad-text {
  font-size: 15px;
  font-weight: 600;
}

.text_number_transport {
  font-size: 11px;
  color: var(--grey);
}

/*  Angela - 18/06/2025  END ----------------///////*/
.payment_method {
  display: flex;
  flex-direction: column;
}

.payment_cost {
  font-size: 14px;
  padding-left: 10px;
}

.delivery_time {
  font-size: 14px;
}

.box-payment {
  margin-left: 10px;
}

.addwish {
  margin-left: auto;
}

#plk-cart-pini {
  position: relative;
}

#plk-cart-pini .shop_circle {
  background-color: var(--pink);
  right: -8px;
}

.order_delivery_form {
  display: flex;
  flex-direction: column;
}

.radio_pink {
  display: flex;
  align-items: center;
}

.products_cat_filter {
  display: flex;
  flex-direction: column;
}

.product_listgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 50px;
  column-gap: 50px;
  row-gap: 50px;
  margin-top: 10px;
}

.cart-pini-itens {
  position: absolute;
  background: white;
  position: fixed;
  background: var(--white);
  padding: 20px;
  width: 100%;
  max-width: 240px;
  top: 135px;
  z-index: 999;
  border: 1px solid var(--pink);
  right: 10px;
  display: none;
}

.btn-showcart {
  color: var(--white);
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  max-width: 325px;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  border-radius: 2px;
  background: var(--pink);
}

.cart_record_style {
  display: flex;
  gap: 10px;
  display: flex;
  justify-content: space-between;
}

.cart_record_style > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 14px;
}

.cart_record_style .cart_record_price {
  font-size: 14px;
}

.cart_record_style img {
  max-width: 52px;
  height: auto;
}

.cart_record_quantity,
.cart_record_price {
  font-size: 14px;
}

.plk-cart-pini-inner-wrapper {
  position: relative;
}

.cart_record {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--pink);
  padding-bottom: 20px;
}

.plk-cart-pini-inner-wrapper {
  overflow-y: scroll;
  height: 40vh;
  scrollbar-width: none;
}

.order_no_payment {
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.order_no_payment .error-page-m {
  font-size: 14px;
}

.order_no_payment #plk-pay-btn-wp {
  margin: 0 auto;
}

.order_no_payment .data-details th,
.data-details td {
  padding: 10px 20px;
}

.order_no_payment .title {
  border-bottom: 1px solid var(--lightgrey);
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.order_no_payment .zoid-outlet {
  max-width: 150px !important;
}

.order_no_payment #plk-paypal-button-line {
  font-size: 14px;
}

.order_no_payment .paypal {
  padding: 10px;
}

.order_no_payment .stripe {
  padding: 10px;
}

.order_no_payment th {
  background: none !important;
}

.order_no_payment .info-order-pay div {
  color: var(--grey);
}

.order_no_payment .info-order-pay div span {
  color: black;
}

.order_no_payment .text {
  font-size: 14px;
}

.data_3 #plk-mbway-prefix {
  max-width: 25px;
}

.data_3 #plk-mbway-number {
  max-width: 100px;
}

.mwbway-field-wrapper.display-flex {
  margin: auto;
}

.woocommerce_eupago_table .btn-showcart {
  margin-top: 10px;
}

.field-wrapper span {
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-right: 5px;
}

.icon-color {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
}

.checkbox-styled input + .checkbox-content {
  padding: 0 0 0;
  margin: 0 0 0;
  display: block;
  position: relative;
}

.checkbox-styled {
  padding: 0 0 0;
  margin: 0 0 0;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: block;
}

.checkbox-styled input {
  display: none;
}

#ADDCART_BOX {
  display: flex;
  width: 100%;
  align-items: center;
}

.cart_notavailable p {
  font-size: 14px;
  color: black !important;
}

.cart_notavailable input {
  width: 100%;
}

.cart_notavailable .btn_carrinho {
  width: 25%;
}

.btn_notavailable {
  background-color: var(--grey);
}

.btn_notavailable:hover {
  background-color: var(--darkgrey);
}

.cart_notavailable input:focus {
  outline: none;
}

.cart_notavailable {
  margin-top: 2rem;
}

#btn_add_size_color {
  color: red;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  display: none;
}

/*
.cart_notavailable button {color: var(--white);
  width: 25%;
  font-weight: 500;
  gap: 15px;
  display: flex;
  align-items: center;
  font-size: 1;
  font-size: 16px;
  justify-content: center;
  height: 52px;
  background: var(--pink);
}*/

.cart_notavailable_main .success-message {
  font-size: 14px;
}

/* Cookies */

.cookies_div {
  background: #efefef;
  box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 1);
  position: fixed;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, #fafafa, #efefef);
  z-index: 9999;
}

.cookies_div .cookies_canevi {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  padding: 8px 12px;
  font-weight: 600;
  text-align: center;
  background: var(--pink);
  color: white;
  max-width: 160px;
  min-height: 44px;
  margin: auto;
}

.cookie-inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  gap: 44px;
  width: 85%;
  margin: auto;
}

.cookie-inner-wrapper .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.cookie-inner-wrapper .text span a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
}

.cookies_div .buttons {
  display: flex;
  gap: 20px;
}

.relative {
  position: relative;
}

.cookies_div .close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.filter_subcategory {
  display: flex;
  flex-direction: column;
  margin-left: 10px !important;
  margin-bottom: 10px !important;
}

.filter_subcategory .appear_product {
  margin-bottom: 5px !important;
}

.changedata2 .btn_area {
  padding-bottom: 0;
}

.msg_div {
  min-height: 28px;
  padding-left: 20px;
}

.msg_div .success-message {
  margin-top: 0px;
  padding-top: 5px;
  font-size: 14px;
}

.pass_error_div {
  min-height: 28px;
  margin-bottom: 0 !important;
  padding-top: 2px;
}

.navbar-fixed {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: fit-content;
}

.historic .data_3 h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
}

.woocommerce_eupago_table2.history,
.woocommerce_eupago_table.history {
  padding-top: 10px;
  font-size: 14px;
}

.paypal.history {
  font-size: 14px;
}

.stripe.history,
.visa.history {
  padding-top: 10px;
  font-size: 14px;
}

.order_end_paid .button_paid {
  width: 100%;
  padding: 10px 20px;
  background: var(--pink);
  color: var(--white);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  max-width: 200px;
  min-width: 200px;
  margin-top: 20px;
}

.order_end_paid .text_payment {
  padding: 1rem 0 !important;
}

.order_end_paid .payment-form-wrapper .button_paid {
  margin: 20px auto 0 auto;
}

/*Segundo nível menu */

#menu-background {
  position: relative;
  display: none;
}

.menu-background {
  background: var(--dirtywhite);
  /*position: fixed;*/
  position: absolute;
  height: 200px;
  width: 100%;
  z-index: 2;
  /*top: 159px;*/
  top: 0;
  opacity: 90%;
  border-top: 1px solid #8d8d8d9e;
  border-bottom: 1px solid #8d8d8d9e;
}

.nav-item {
}

.subnav-list {
  position: absolute;
  list-style: none;
  display: none;
  font-size: 1.125rem;
  line-height: 30px;
  padding-top: 70px;
  padding-left: 5px;
  z-index: 3;
  grid-template-rows: repeat(6, 1fr);
  grid-auto-flow: column;
}

.nav-item.show1 .subnav-list {
  display: grid;
}

.nav-item.show1 .title {
  color: var(--pink);
}

.nav-item a {
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav-item.show1 .menuarrow {
  transform: rotate(180deg);
}

.buttons-product .hidden {
  display: none;
}

.plk_img_cat img {
  max-width: 150px;
  height: auto;
}

.plk_img_cat {
  display: none;
}

.nav-item.show1 .plk_img_cat {
  display: block;
  position: absolute;
  right: -5px;
  z-index: 999;
  padding-top: 70px;
}

.subproduct_colours_list {
  margin: auto;
}

.subproduct_colours_list .color_cat_dot {
  max-width: 10px;
  max-height: 10px;
}

.subproduct_colours_list {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.color_total_plus {
  font-size: 12px;
  font-weight: 400;
  color: var(--grey);
}

.subproduct_colours_list .color_cat_dot {
  margin-right: 5px;
}

.card-product .content {
  padding: 10px 7px 14px 7px;
}

.card-product .card_product_href {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.filter_promo .checkbox_pink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.filter_promo .checkbox_pink input + .checkmark {
  margin-right: 0;
}

.filters_box h3 {
  margin: 0;
}

.filter_promo .checkbox_pink input + .checkmark::before {
  border: 1px solid black;
}

.filter_promo .checkbox_pink input:checked + .checkmark::before {
  color: var(--pink);
  background-color: white;
  border: 1px solid black;
}

.filtermobile {
  margin-top: 3rem;
}

.filters_all .line:nth-of-type(1) {
  display: none;
}
.data_delivery .price_color .addrnr:not(:empty),
.data_billing .price_color .addrnr:not(:empty) {
  padding-left: 3px;
}

.payment-box .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--purple);
  border-radius: 5px;
  width: 100%;
  padding: 15px 0;
  border: none;
  outline: none;
  margin-top: 20px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 200ms ease-in;
}
.payment-box .btn:hover {
  background-color: var(--purple-hover);
}

.back-store-wp {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.back-store-wp img {
  transform: rotate(180deg);
}
.back-store-wp a {
  display: block;
  font-weight: 300;
  font-size: 0.9rem;
  padding-left: 5px;
  color: #2b2b2b;
}
.order-terms-wp .terms-label {
  padding-left: 0 !important;
}
#plk-order-form .order-terms-wp .terms-label {
  padding-left: 15px !important;
}
.btngostore {
  text-transform: uppercase;
}

.contact_map {
  width: 100%;
}

.contact_map iframe {
  width: 100%;
}

/*2025-06-25 - Problemas no slide*/
/* Layout lado a lado: thumbnails à esquerda, slide à direita */
.slider-wrapper {
  display: flex;
  gap: 3px; /* espaço entre thumbs e slider */
  align-items: flex-start;
}

/* Thumbnails verticais */
.thumbs {
  width: 108px; /* defina conforme seu layout */
  max-height: 678px;
  overflow: hidden;
}

.thumbs .slick-list {
  max-height: 678px; /* altura para mostrar 4 thumbs, ajuste se precisar */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* para scroll suave no iOS */
  touch-action: pan-y; /* permite o scroll vertical via toque */
}

/* Espaço entre thumbs */
.thumbs .slick-slide {
  margin-bottom: 8px;
}

/* Garante que as imagens ocupem o container corretamente */
.thumbs img {
  display: block;
  width: 100%;
  height: auto;
}

/* Slide principal */
.big {
  flex: 1; /* ocupa o resto do espaço */
}

.big img {
  width: 100%;
  height: auto;
  display: block;
}

.thumbs .slick-list::-webkit-scrollbar {
  width: 6px;
}
.thumbs .slick-list::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 3px;
}

.thumbs .slick-list {
  max-height: 678px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
