a,
button {
  cursor: pointer;
}

a:hover {
  color: var(--hover-color);
}

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

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

.cookie-inner-wrapper {
  padding: 10px 20px;
  background: rgba(109, 110, 113, 0.5);
  color: white;
  display: flex;
  justify-content: center;
  font-size: 14px;
}
.cookie-inner-wrapper a {
  color: white;
  text-decoration: underline;
  font-size: 14px;
  padding-left: 5px;
  white-space: nowrap;
}
.cookie-inner-wrapper-text {
  margin-right: 15px;
}

.cookie-inner-wrapper .button {
  margin-top: 0;
  padding: 0 20px;
  line-height: 2;
  margin-left: 20px;
  font-size: 14px;
}
.btn_cookie_accept {
  margin-left: 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  padding: 5px;
  text-transform: lowercase;
  font-size: 10px;
  color: black;
  box-shadow: none;
  height: fit-content;
}
input::-webkit-input-placeholder {
  color: #666666;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

input:-moz-placeholder {
  color: #666666;
  opacity: 1;
}
input::-moz-placeholder {
  color: #666666;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: #666666;
}
textarea::-webkit-input-placeholder {
  color: #666666;
}
textarea:-moz-placeholder {
  color: #666666;
  opacity: 1;
}
textarea::-moz-placeholder {
  color: #666666;
  opacity: 1;
}
textarea:-ms-input-placeholder {
  color: #666666;
}
.form-error {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #c60f13;
  clear: both;
}
.success-message {
  color: green;
  display: none;
  font-size: 16px;
}
.success-message.small {
  font-size: 12px;
}
.form-error-message {
  display: none;
  color: #c72015;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.left {
  float: left;
}
.right {
  float: right;
}
.clear {
  clear: both;
}
.border {
  border: 1px solid red;
}
.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;
}
label.error , #plk_slot_vote_inp_error{
  color: #c72015;
  font-weight: initial;
  font-size: 12px;
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
}
.form-userreg-success-message {
  display: none;
  color: green;
}
.cart-error,
.form-error-message {
  display: none;
  color: rgb(210 37 37);
}
.cart-pini-wrapper {
  position: relative;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Roboto;
  list-style: none;
  text-decoration: none;
}

ul {
  padding-inline-start: 40px;
}

ul li {
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

:root {
  --hover-color: #c59e7f;
  --main-color: #27190e;
  --brown-dark: #0f0504;
  --brown-medium: #2e1008;
  --brown-light: #5b443d;
  --brownreddier: #6d1600;
  --brown-title: #27190e;
  --grey-light: #f5f5f5;
  --grey-medium: #605f5f;
  --cream-color: #efe4d5;
  --cream-color2: rgba(230, 215, 192, 0.5);
  --cream-color3: #f6f3ec;
  --blue-dark: #2a3342;
  --blue: #556987;
  --text-color: black;
  --text-color2: #121212;
  --white-color: white;
  --p1-font: 16px;
  --p2-font: 20px;
  --p3-font: 18px;
  --p4-font: 14px;
  --p5-font: 22px;
  --h1-font: 26px;
  --h2-font: 30px;
  --h3-font: 40px;
  --h4-font: 60px;
  --h5-font: 80px;
  --h6-font: 50px;
}

h1 {
  font-size: var(--h1-font);
}

h2 {
  font-size: var(--h2-font);
}

h3 {
  font-size: var(--h3-font);
}

h4 {
  font-size: var(--h4-font);
}

h5 {
  font-size: var(--h5-font);
}

h6 {
  font-size: var(--h6-font);
}

a {
  color: none;
}

p {
  color: #121212;
}

hr {
  background-color: #707070;
  border: 0;
  height: 1px;
}

button,
input[type="submit"],
input[type="reset"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

/* Estilo específico para inputs do tipo "number" */
input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
  -webkit-appearance: none; /* Chrome, Safari, Edge, Opera */
  appearance: none; /* Padrão */
}

/* Remover botões de spin para navegadores WebKit */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; /* Opcional: para alinhamento visual */
}

legend,
fieldset,
select,
textarea,
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-appearance: textfield; /* Firefox */
  -webkit-appearance: none; /* Chrome, Safari, Edge, Opera */
  appearance: none; /* Padrão */
}

textarea:focus,
input:focus {
  outline: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
}

.top100 {
  margin-top: 100px !important;
}

.top80 {
  margin-top: 80px !important;
}
.top60 {
  margin-top: 60px !important;
}

.top40 {
  margin-top: 40px !important;
}

.top20 {
  margin-top: 20px !important;
}

.bottom150 {
  margin-bottom: 150px !important;
}

.bottom200 {
  margin-bottom: 200px !important;
}

.bottom100 {
  margin-bottom: 100px !important;
}
.bottom80 {
  margin-bottom: 80px !important;
}
.bottom60 {
  margin-bottom: 60px !important;
}
.bottom40 {
  margin-bottom: 40px !important;
}

.bottom20 {
  margin-bottom: 20px !important;
}

/* HomePage */

.main_banner {
  width: 100%;
  height: 100vh;
  /*
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  */
  display: flex;
  flex-direction: column;
}

.banner_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
}

.banner_image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.delivery {
  background-color: var(--brown-medium);
  color: white;
  font-size: var(--p1-font);
  text-align: center;
  padding: 5px 15px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden;*/
}
/* Caso se queira meter animação
.delivery_box {  white-space: nowrap;
  animation: slideDelivery 10s linear infinite;}

@keyframes slideDelivery {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}*/

.menu_position_fix {
  display: flex;
  width: 100%;
  z-index: 15;
  position: relative;
}

.menu_position_fix.fixed {
  position: fixed;
  top: 0;
  margin-top: 0;
}

.menu_position_fix.fixed .menu {
  background-color: rgba(255, 255, 255, 0.95);
}

.nav-animation-down {
  animation: slideDown 0.5s forwards;
}

.nav-animation-up {
  animation: slideUp 0.5s forwards;
  position: relative;
  top: 68px;
}

@keyframes slideDown {
  0% {
    transform: translateY(-68px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-68px);
  }
}

/*
.menu_position_fix.fixed .menu {border-radius:0; background: white;   max-width: 100%;} */

.menu {
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  max-width: 1650px;
  width: 98%;
  margin: auto;
  padding: 0 20px;
  height: 80px;
  align-items: center;
  border-radius: 50px;
  justify-content: space-between;
  margin-top: 20px;
}

.sidebar-open2 .menu_position_fix {
  width: 100%;
  background: white;
}

.menu_all {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
}

.menu_mobile {
  display: flex;
  margin: auto;
  width: 100%;
}

.menu_left {
  width: 50%;
  justify-content: flex-end;
  display: flex;
}

.menu_right {
  width: calc(50% - 184px);
  display: flex;
}

.menu .logo {
  text-align: center;
  min-width: 131px;
  margin: 0 15px;
}

.menu_list {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0;
}

.menu_list li {
  font-size: var(--p2-font);
  text-wrap: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu_list li a {
  color: #121212;
}

.menu_list li a:hover {
  color: var(--hover-color);
}

/*mudanças Angela 2025/07/04 ------------------------////////*/
.menu .icons {
  display: flex;
  gap: 15px;
  margin-left: auto;
}
.submenu_list1 {
  display: none;
}

.submenu_list {
  width: 200px;
  height: 100%;
  padding: 10px 10px;
  background: rgba(255, 255, 255, 0.8);
  color: #121212;
  border-radius: 10px;
  margin: 30px 0 0 0;
}
.submenu_list div {
  margin-bottom: 5px;
}
.has-submenu:hover .submenu_list1 {
  display: block;
}

/*
.submenu_list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;  
  left: 0;
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 1000;
}


.has-submenu:hover .submenu_list {
  display: block;
}


.submenu_list li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  background: #fff;
}


.submenu_list li a:hover {
  background: #f0f0f0;
}

*/

/*carrinho menu*/
.shop {
  position: relative;
}

.shop_circle {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--brownreddier);
  color: white;
  min-width: 19px;
  min-height: 19px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 2px;
  font-size: 12px;
}

.shop_circle a {
  color: white;
}
.shop_circle a:hover {
  color: var(--hover-color);
}

/*carrinho menu*/

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

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

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

.cart-pini-itens .main_button {
  max-width: 100%;
  width: 100%;
  min-width: unset;
}

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

.cart_record_style .title {
  font-weight: 500;
}

.cart_record_style .text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 5px;
  justify-content: center;
}

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

.cart_record_price strike {
  text-decoration: line-through;
}

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

.cart_record_quantity,
.cart_record_price {
  font-size: 14px;
  color: #6c7275;
}

.user .icon_login {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #121212;
}

.user .icon_login:hover {
  color: var(--hover-color);
}

.menu .lang {
  font-size: var(--p5-font);
  text-transform: uppercase;
}

.only_mobile_logo {
  display: none;
}

/* Banner box */

.mbanner_text {
  max-width: 640px;
  width: 100%;
}

.mbanner_text h4 {
  color: var(--main-color);
  line-height: 60px;
  margin-bottom: 20px;
}

.mbanner_text p {
  color: var(--text-color2);
  font-size: var(--p2-font);
}

.main_button {
  color: var(--grey-light);
  background-color: var(--brownreddier);
  padding: 15px 10px;
  font-size: var(--p3-font);
  min-width: 210px;
  max-width: fit-content;
  border-radius: 5px;
  box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-container {
  max-width: 1650px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

/* Valores da empresa */

.values_list {
  display: flex;
  margin: 0 auto;
  justify-content: space-around;
  gap: 10px;
}

.values_list .value:nth-child(2) {
  display: flex;
  align-items: center;
}

/*
.values_list .value:nth-child(2)::after,
.values_list .value:nth-child(2)::before {
  content: url(../i/Intersect.svg);
}

.values_list .value:nth-child(2)::after {
  padding-left: 150px;
}
.values_list .value:nth-child(2)::before {
  padding-right: 150px;
}

.value {
  text-align: center;
  position: relative;
  flex:1;
}

.value:nth-child(2)::before,
.value:nth-child(2)::after {
  content: url(../i/Intersect.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

}

.value:nth-child(2)::before {
  left: -25px; 
}

.value:nth-child(2)::after {
  right: -25px; 
}

*/
.value {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value .image {
  display: flex;
  align-items: center;
}

.values_list .value p:nth-of-type(1) {
  font-size: var(--p1-font);
}
.values_list .value p:nth-of-type(2) {
  font-size: var(--p5-font);
}

.value .image img {
  max-width: 120px;
  width: 100%;
  height: auto;
}
.value hr {
  background-color: black;
  border: 1px;
  height: 1px;
  width: 25%;
  margin: 10px auto;
}

/* Call to action*/

.cta {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.cta p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.cta_content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta2 .cta_image {
  width: 50%;
}
.cta_image {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta .main_button {
  margin-top: 20px;
}

.main_button:hover {
  color: var(--hover-color);
}
.main_button a:hover {
  color: var(--hover-color);
}
.main_button.clean:hover {
  color: var(--hover-color);
}

.cta_image.right {
  justify-content: end;
}

.cta_image img {
  max-width: 341px;
  width: 100%;
  height: auto;
  flex: 1 1 auto;
}

.cta_image img:nth-of-type(1) {
  margin-top: auto;
  border-bottom-left-radius: 25%;
  border-top-right-radius: 25%;
}

.cta_image img:nth-of-type(2) {
  margin-bottom: auto;
  border-bottom-right-radius: 25%;
  border-top-left-radius: 25%;
}

/*
.background_image {width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex; }*/

.background_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
}

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

.cta .title {
  color: var(--brown-title);
}

.cta_text_box h6 {
  margin-bottom: 20px;
}

.cta_text_box h2,
.cta_text_box .title {
  margin-bottom: 20px;
}

.cta_text_box p,
.cta_text_box ul li {
  font-size: 22px;
  line-height: 1.5;
}

.cta_text_box2 {
  align-items: end;
  text-align: end;
  margin-left: auto;
  max-width: 580px;
  width: 100%;
}

.width80 {
  width: 80%;
}

/*Call to action 2 */

.cta2 .cta_content {
  flex-direction: row-reverse;
}
.cta2.cta_cream .cta_content * {
  color: var(--cream-color);
}

.cta_cream .main_button {
  background-color: var(--cream-color);
  color: var(--brown-light) !important;
}

.cta_cream .main_button:hover {
  background: var(--hover-color) !important;
}
.cta_cream .main_button a:hover {
  background: var(--hover-color) !important;
}

.cta2 .cta_image img {
  max-width: 341px;
  width: 100%;
  height: auto;
}

.cta_special {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta_special .two_images:first-child img {
  margin-top: 40px;
  border-bottom-left-radius: 25%;
  border-top-right-radius: 25%;
}

.cta_special .two_images:last-child img {
  margin-bottom: 40px;
  border-bottom-right-radius: 25%;
  border-top-left-radius: 25%;
}

.two_images img {
  /*max-width: 341px;*/
  max-width: 100%;
  width: 100%;
  height: auto;
}

.cta.back-banner {
  /*
  background-image: url("/i/backgroundcta1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;*/
  padding: 150px 0;
}

.cta2.back-banner {
  /*
  background-image: url("/i/cta2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;*/
  padding: 100px 0;
}

.cta3.back-banner {
  background-image: url("/i/backgroundcat3.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

/*Call to action 3 */

.cta3 .cta_image,
.cta3 .cta_text_box {
  width: 100%;
}

.cta3 .cta_image {
  height: auto;
  justify-content: left;
}

.cta3 .cta_image img {
  /*max-width: 697px;*/
  max-width: 100%;
  width: 100%;
  height: auto;
}

/*sections, para todas */

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.section p {
  line-height: 2;
}

.section .title,
.section .subtitle {
  text-align: center;
  font-weight: 500;
  color: var(--brown-title);
}

.section h4 {
  margin-bottom: 20px;
}

/* Listagem de Produtos*/

/*.product_list {display: flex; flex-wrap: wrap; gap: 10px;} flex*/

.product_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
}

.product_record {
  height: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 506px;
  margin: 20px auto 0 auto;
}

.product_card {
  border-radius: 15px;
  width: 100%;
  background: linear-gradient(to right, #f6efe4 0%, #e6d7c0 70%, #e6d7c0 100%);
  padding: 10px 20px 20px 20px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  /*height: 250px;*/
  height: 280px;
}

.symbols {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  width: 100%;
  margin-bottom: 10px;
  min-height: 24px;
}

.symbols img {
  cursor: pointer;
}

.symbols img {
  max-width: 24px;
  width: 100%;
  height: auto;
}

.symbols2 img {
  max-width: 56px;
  width: 100%;
  height: auto;
}

.product_card a {
  color: black;
}

.product_card a:hover {
  color: var(--hover-color) !important;
}

.product_card h1 {
  font-size: 18px;
}

.product_card .product_subtitle {
  font-size: 15px;
  font-weight: 600;
}

.product_card .text_offer strong {font-weight: 500 !important;}
.product_card .weight_div .text_offer{font-size: 14px;}


.product_card .price {
  margin-bottom: 10px;
}

.product_card .realprice {
  font-size: 18px;
  font-weight: 600;
}

.product_card .price span:first-of-type,
.product_card .weight_div span:first-of-type {
  font-size: 14px;
}

.product_card .oldprice {
  font-size: 14px;
  color: #a5a5a5;
  text-decoration: line-through;
}

.product_card .image {
  width: 100%;
  max-width: 169px;
  position: relative;
}
.product_card .content {
  width: 100%;
}

.product_card .weight {
  line-height: 20px;
}

.product_card .content p {
  font-size: 14px;
  margin: 10px 0;
  /*  height: 32px;*/
  height: 75px;
  line-height: 1.2;
}

.product_card .content .product_title {
  height: 64px;
  overflow: hidden;
}

.product_card .image img {
  position: absolute;
  bottom: 0;
  max-width: 169px;
  height: auto;
  transform: translateX(-50%);
  left: 50%;
  max-height: 318px;
}

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

.buy_btn {
  color: var(--brown-light);
  background-color: white;
  font-size: var(--p3-font);
  border-radius: 5px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* Listagem de categorias e produtos */

.product_cats .tabs {
  background-color: var(--cream-color2);
  padding: 5px;
  display: flex;
  align-items: center;
  margin: auto;
  border-radius: 25px;
  max-width: 736px;
  width: 95%;
  justify-content: space-between;
  overflow-x: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  /* WebKit browsers */
  &::-webkit-scrollbar {
    display: none;
  }
}

.product_cats .tab-btn {
  min-width: 180px;
  max-width: 180px;
}

.tab-btn {
  width: 100%;
  text-align: center;
  height: 60px;
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 300;
}

.tab-btn.active {
  background-color: white;
  border-radius: 25px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.subcat_list {
  display: flex;
  gap: 20px;
}

.product_cats {
  min-height: 43.5vh; /*Adicionado para o caso de não ter sublista e não fazer saltos */
}

.product_cats .cart {
  max-width: 370px;
  width: 100%;
  max-height: 291px;
  height: auto;
  background-color: var(--cream-color2);
  display: flex;
  border-radius: 25px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  cursor: pointer;
  padding: 10px;
}

.product_cats .cart img {
  display: flex;
  margin: auto;
  object-fit: cover;
  max-width: 335px;
  width: 100%;
  height: auto;
}

.product_cats .cart .title {
  color: white;
  font-size: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;

  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 0 20px;
}

.product_cats .cart:hover .title {
  opacity: 1;
}

.product_cats .cart .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 24, 24, 0.5); /* Semi-transparent gray */
  opacity: 0;
  transition: opacity 0.3s; /* Smooth transition for opacity */
  border-radius: 25px;
}

.product_cats .cart:hover .overlay {
  opacity: 1;
}

.tips_at_home {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.tips_at_home .cart {
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  margin: auto auto 40px auto;
  height: 100%;
}

.tips_at_home .cart .image {
  display: flex;
  justify-content: center;
}
.tips_at_home .cart .image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.tips_at_home h1 {
  font-size: 22px;
  font-weight: 500;
  color: var(--brown-medium);
}

.tips_at_home p {
  font-size: 16px;
  font-weight: 400;
  color: black;
}

/* FAQS */

.faq_pf {
  padding: 20px;
  cursor: pointer;
}

.faq_pf:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq_answer {
  padding-top: 10px;
}

.close_faq,
.faq_answer {
  display: none;
}

.faq_answer p {
  font-weight: 300;
  color: #452a23;
}

.faq_function {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq_pf.active {
  background-color: var(--cream-color);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
}

.faq_pf.active .faq_answer {
  display: block;
}

/* NEWSLETTER */

.newsletter {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 40px;
  row-gap: 0;
}
.subscribe1 {
  display: flex;
  flex-direction: column;
  width: 55%;
}

.subsc2 {
  font-size: 18px;
  font-weight: 400;
}

.subscribe2 {
  display: flex;
  width: 45%;
  gap: 2rem;
  padding-top: 20px;
}

.subsc3 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.email {
  width: 100%;
  height: 48px;
  display: flex;
  border: 1px solid var(--brown-medium);
  font-size: 16px;
  border-radius: 5px;
  padding: 0;
  padding-left: 1rem;
}

.email::placeholder {
  color: var(--brown-medium);
}

.newsletter_email {
  display: flex;
  gap: 40px;
}

.subscribe_btn {
  font-size: 18px;
  height: 48px;
  padding: 0 20px;
  font-weight: 500;
  min-width: fit-content;
}

.subsc3 span {
  color: #6a6a6a;
  font-size: 14px;
}

/*checkbox personalizada */

.user_login .rgpd a {
  color: black;
}
.user_login .rgpd a:hover {
  color: var(--hover-color);
}

.rgpd .checkbox-simple .checkmark {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #bdc0c4;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  min-width: 18px;
  min-height: 18px;
}
.rgpd .plk-rgpd-checkbox {
  opacity: 0;
  position: absolute !important;
  z-index: -1;
}
.checkbox-simple input {
  appearance: auto;
  min-width: 20px;
  height: 20px;
  cursor: pointer;
}
.plk-rgpd-checkbox {
  appearance: auto;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.rgpd {
  border: none;
  padding: 0;
  display: flex;
  gap: 5px;
  font-size: 14px;
}

.rgpd span a {
  color: var(--text-color2);
  font-weight: 500;
}
.rgpd span a:hover {
  color: var(--hover-color);
}

.rgpd .checkbox-simple .checkmark {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #bdc0c4;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  min-width: 18px;
  min-height: 18px;
}

/* Adiciona um "tick" quando o checkbox está marcado */
.checkbox-simple input[type="checkbox"]:checked + .checkmark:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
}

/* FOOTER */

.footer_background {
  background-color: #452a23;
  color: white;
}

.footer_container {
  padding: 80px 0 60px 0;
}

.footer_flex {
  display: flex;
}

.footer_container * {
  color: white;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer_colunms {
  display: flex;
  padding-bottom: 100px;
}

.flex-direction-column {
  display: flex;
  flex-direction: column;
}
.footer_bottom {
  display: flex;
  justify-content: space-between;
}

.footer_payments .list,
.social_networking .list {
  display: flex;
  gap: 10px;
}

.footer_container hr {
  background-color: white;
  border: 1px;
  height: 1px;
  width: 100%;
}

.footer_colunm h1 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer_container .text {
  line-height: 30px;
}

.footer_menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.footer_colunm {
  max-width: 275px;
  margin: 0 auto;
}

.footer_colunm p {
  line-height: 25px;
  margin-bottom: 10px;
}

.footer_colunm:first-child {
  flex: 2;
}

.footer_colunm .box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0.75;
}

.footer_menu_bottom {
  display: flex;
  gap: 20px;
  font-weight: 500;
  margin-left: auto;
}

.flex-end {
  display: flex;
  justify-content: end;
}

.footer_grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.footer_logo {
  max-width: 360px;
  width: 100%;
}

.copyright a {
  font-weight: 600;
}

/* Sobre Nós */

.path * {
  color: var(--grey-medium);
  font-weight: 500;
}
.path a *:hover {
  color: var(--hover-color);
}
.path {
  display: flex;
  gap: 5px;
}
.path img {margin-top:3px}
.path .highlight {
  color: black;
  margin-left: 10px;
}
.path .highlight a {
  color: black;
}

.section_header h6 {
  color: var(--brown-title);
  margin-bottom: 10px;
}



.image_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.image_list img {
  max-width: 375px;
  width: 100%;
  height: auto;
}

.text_list {
  display: flex;
  justify-content: space-around;
  margin: auto;
  max-width: 80%;
  width: 100%;
}

.text_list .box_text {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 10px;
  max-width: 200px;
  flex: 1;
}

.text_list.time_line_div h6{font-size: 26px;     font-weight: 500;}

.text_list .box_text h6 {
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text-color2);
}
.text_list.time_line_div h6{font-weight: 500;}

.text_list .box_text span {
  color: var(--text-color2);
}

.section_two .cta_text_box,
.section_two .cta_special {
  width: 100%;
}

/* Contact */

.coffee_section .cta_content {
  background-color: var(--cream-color3);
  border-radius: 20px;
  gap: 10px;
  width: 100%;
}

.span_arrow {
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  max-width: fit-content;
}

.span_arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.span_arrow span {
  color: var(--brown-title);
}
.span_arrow span:hover {
  color: var(--hover-color);
}

.coffee_section .image_box {
  width: 100%;
}

.coffee_section .image_box img {
  max-width: 683px;
  width: 100%;
  height: auto;
}
.coffee_section .cta_text_box p {
  font-size: 18px;
}
.coffee_section .cta_text_box {
  padding: 10px;
}

.ctc_box_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ctc_box {
  display: flex;
  flex-direction: column;
  background: var(--cream-color3);
  border-radius: 20px;
  width: 100%;
  text-align: center;
  padding: 20px;
  align-items: center;
  gap: 10px;
}

.ctc_box span {
  color: #6c7275;
  font-weight: 600;
  font-size: 16px;
}
.ctc_box .text {
  font-size: 16px;
  font-weight: 500;
  color: #141718;
}
.ctc_box p {
  line-height: 22px;
}
.ctc_box a:hover {
  color: var(--hover-color);
}

/* Form contacto */
.form_map {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-bottom: 20px;
}

.form_contact {
  width: 50%;
}
.map {
  width: 50%;
  position: relative;
  overflow: hidden;
  height: 500px;
}

#map {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

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

.form_contact_div label {
  color: #6c7275;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.form_contact_div label.error {
  color: #c72015;
  font-size: 12px;
  text-transform: initial;
  font-weight: 400;
}

.form_contact_div input {
  height: 40px;
  font-size: 16px;
  color: var(--text-color);
  border: 1px solid #cbcbcb;
  width: 100%;
  padding: 0 15px;
  border-radius: 5px;
}

.form_contact_div input:focus {
  border: 1px solid #cbcbcb;
}

.form_contact_div input::placeholder {
  color: #6c7275;
}

.form_contact_div textarea {
  border: 1px solid #cbcbcb;
  font-size: 16px;
  height: 120px;
  border-radius: 5px;
  overflow: auto;
  resize: none;
  width: 100%;
  padding: 10px;
}

.form_contact_div textarea::placeholder {
  color: #6c7275;
}

.form_contact .success-message {
  margin-top: 10px;
}

/* User Login */

.login_page {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/i/login_backg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.user_login {
  width: 100%;
  max-width: 450px;
  margin-bottom: 40px;
}

.form_div {
  position: relative;
  width: 100%;
}

.form_div input , .form_div select{
  background-color: white;
  border: 1px solid #d5dae1;
  font-size: 16px;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  border-radius: 5px;
}

.form_div input[type="text"]::placeholder , .form_div input[type="password"]::placeholder{color:#6c7275}

.form_div input[readonly]{    cursor: not-allowed;
  background: #ebeced;
  color: black;}

.label_input {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 90px;
}
.input_title {
  font-size: 16px;
  color: #121212;
  font-weight: 600;
  margin-bottom: 10px;
}
.two_labels {
  display: flex;
  width: 100%;
  gap: 10px;
}

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

.label-simple-wp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.label-simple-wp span:first-of-type {
  font-size: 14px;
  font-weight: 500;
}

.form-link {
  color: var(--brownreddier);
  font-size: 14px;
  font-weight: 500;
}

.form_div input::placeholder {
  color: var(--blue-dark);
}

.checkbox-simple2 {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #bdc0c4;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  min-width: 18px;
  min-height: 18px;
}

.checkbox-simple2 input[type="checkbox"]:checked {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
}

.user_login .main_button {
  width: 100%;
  max-width: 100%;
  max-height: 46px;
}

.classor {
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}

.register {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}

.register a {
  color: var(--brownreddier);
}

.error-container {
  min-height: 25px;
}

#google_signin_button {
  border: 1px solid #dddede;
  width: 100% !important;
  border-radius: 5px;
  background: white;
  margin-top: 25px;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 46px;
}

.area_reservada {
  display: flex;
  gap: 100px;
}

.profile_menu {
  background-color: var(--cream-color3);
  max-width: 350px;
  width: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  height: fit-content;
  border-radius: 5px;
}

.profile_menu_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile_menu_list .menu_item {
  color: #6c7275;
  height: 42px;
  align-items: center;
  font-weight: 500;
}

.profile_menu_list .menu_item:hover {
  color: var(--hover-color);
}

.profile_menu_list .menu_item_on {
  color: black;
}
.profile_menu_list .menu_item_on::after {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid black;
  margin-top: 4px;
}

.account {
  width: 100%;
  line-height: 1.5;
}

.account h1 {
  font-size: 22px;
  margin-bottom: 20px;
}

.area_reservada .main_button {
  font-size: 16px;
  font-weight: 500;
  min-width: fit-content;
  padding: 10px 40px;
  margin-bottom: 20px;
}

.main_button.clean {
  color: var(--brownreddier);
  background-color: white;
  border: 1px solid var(--brownreddier);
}

.form_button {
  display: flex;
  gap: 20px;
}

.area_reservada .input_title {
  color: #6c7275;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.pic_account input {
  display: none;
}

/* Área de utilizador: input */

.pic_account input {
  display: none;
}

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

.profile-pic.empty {
  background-color: var(--cream-color);
  width: 82px;
  height: 82px;
  border-radius: 50%;
}

/*TODO, ajustar para o empty */
.user_session .profile-pic {
  max-width: 22px;
  max-height: 22px;
}

.pic_account {
  margin: auto;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.profile-pic {
  position: relative;
  display: flex;
}

.select_image {
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.name_account {
  font-size: 22px;
  margin-top: 10px;
  font-weight: 600;
}

/* Morada */

.morada_fat_item h1 {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 20px;
}

.morada_fat_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.morada_fat_item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid black;
  border-radius: 5px;
  max-width: 600px;
  width: 100%;
}
.morada_fat_item .flex {
  display: flex;
}
.morada_fat_item .flex_column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  /*margin-left: 10px;*/
}
.morada_fat_item .flex_column .text_box {
  font-size: 14px;
}
.morada_fat_item .flex_column .text_box p {
  line-height: 1.75;
}
.morada_fat_item .space_between {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.morada_fat_item .right_side {
  display: flex;
  gap: 10px;
}
.morada_fat_item .right_side .edit {
  display: flex;
  gap: 5px;
  align-items: center;
}
.morada_fat_item .right_side .edit p {
  color: #6c7275;
  font-size: 16px;
  font-weight: 500;
}

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

.radio_address .checkmark {
  display: flex !important;
  align-items: center !important;
}

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

.radio_address input + .checkmark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #726c6c;
  background-color: var(--white);
  border-radius: 50px;
}

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

.radio_address input:checked + .checkmark::after {
  content: "";
  position: absolute;
  border: 2px solid black;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

.add_address {
  font-size: 16px;
  font-weight: 600;
  max-width: fit-content;
}

.base_page {
  min-height: 100vh;
}
.min_height60 {
  min-height: 60vh;
}

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

.history_date_filter input,
.history_date_filter select {
  border: 1px solid #d9d9d9;
  height: 42px;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  color: #6c7275;
}

.history_date_filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.history_date_filter span {
  color: #6c7275;
  font-size: 14px;
  justify-content: end;
  display: flex;
}

.history_date_filter .date {
  display: flex;
}

.filter_historybtn {
  color: #6c7275;
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
}

/* Página de Histórico de Encomendas*/

.info-order .addfileproof {
  margin: 0;
  padding: 0;
}

.info-order h3 {
  font-size: 18px;
  padding-bottom: 10px;
}

.info-order {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.info-order > div {
  border: 1px solid #ddd;
  padding: 20px;
  width: 48%;
  line-height: 1.5;
}

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

.areareservada_orderhistory {
  width: 100%;
}

.img_select {
  position: absolute;
  right: 10px;
}

.order_history_table {
  border-collapse: collapse;
  width: 100%;
}

.order_history_table th,
.order_history_table td {
  border-top: 1px solid #ddd;
  border-left: none;
  border-right: none;
  padding: 10px 20px;
  text-align: left;
  white-space: nowrap;
}

.order_history_table th {
  border-top: 0px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  color: #6c7275;
  font-weight: 400;
}

.order_history_table td {
  font-size: 14px;
  height: 70px;
}

.order_history_table td:last-child {
  border-right: none;
}

.order_history_table td a {
  color: black;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

/* Página Produto */
.product_page .product-info .subtitle{font-weight: 500;}
.product_page .product_rating{margin-top: 10px;}
.product_page {
  display: flex;
  gap: 20px;
}

.product_page .product-info .text_offer{padding-top: 5px;}
  .product_page .product-info .text_offer *{
    font-weight: 400 !important;
    font-size: 14px;}
  

.product_page_img {
  display: flex;
  width: 100%;
  gap: 5px;
}

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

.thumbs {
  /*max-height: 782px;*/
  max-width: 154px;
  width: 100%;
}

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

.product-details {
  max-width: 625px;
  width: 100%;
  margin-left: auto;
}

.add_to_cart {
  width: 100%;
  gap: 20px;
  display: flex;
  padding: 15px 0;
  flex-direction: column;
}

.add_to_cart .available {
  display: flex;
  gap: 20px;
}

.counter input {
  border: none;
  background-color: transparent;
  display: flex;
  font-size: 18px;
  color: black;
  text-align: center;
  width: 50px;
  align-items: center;
  min-width: 10px;
  cursor: pointer;
  font-weight: 500;
}

.counter {
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  border-radius: 5px;
}

.counter_div {
  display: flex;
  width: 100%;
  padding: 0 5px;
  justify-content: space-evenly;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 24px;
}

.addtocart {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  width: 100%;
}

.soldout {
  display: flex;
  margin-left: auto;
  color: #c72015;
  font-weight: 500;
  font-size: 18px;
}

.add_to_cart .main_button {
  max-width: 100%;
  width: 100%;
  height: 60px;
  color: #f0fdf4;
  font-weight: 500;
}

/* Divisor Descrição + Informações Adicionais */

.two_categories {
  display: flex;
}

.two_categories a {
  border-bottom: 2px solid transparent;
  padding-bottom: 12px;
  width: 250px;
  text-align: center;
  font-weight: 500;
  color: #808080;
}

.two_categories a.active {
  color: var(--black);
  border-bottom: 2px solid var(--brownreddier);
  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;
}

.info_product_desc h1 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #512100;
}

.info_product p {
  line-height: 1.5;
  color: #141718;
}

.info_product_tittle::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  margin-top: 0.5rem;
}

.product-info h1 {
  font-size: 28px;
}
.ref_product {
  color: #b9bbbf;
  font-size: 16px;
  margin-bottom: 10px;
}
.ref_product a {
  color: #b9bbbf;
}

.product_headline {
  font-size: 14px;
  color: #121212;
  margin-bottom: 20px;
}

.product_car .title {
  color: #512100;
  font-size: 18px;
  font-weight: 600;
}

.product_car .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  margin-top: 0.25rem;
}

.caract_list {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 30px 0;
  column-gap: 20px;
  row-gap: 6px;
}

.caract_item {
  display: flex;
  width: 48%;
  justify-content: space-between;
}

.caract_item .name_item {
  min-width: 110px;
}

.caract_item input {
  visibility: hidden;
}

.level {
  display: flex;
  gap: 2px;
  align-items: center;
}

.level .filled {
  -webkit-mask-image: url("../i/filled.svg");
  mask-image: url("../i/filled.svg");
  mask-size: 18px 14px;
  width: 18px;
  height: 14px;
  background-color: #5d544c;
}

.level span {
  -webkit-mask-image: url("../i/empty.svg");
  mask-image: url("../i/empty.svg");
  mask-size: 18px 14px;
  width: 18px;
  height: 14px;
  background-color: #e8d9c4;
}

.select_option .title {
  color: #a5a5a5;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  gap: 10px;
}

.select_option .options {
  display: flex;
  margin: 0px 0px 30px 0;
  gap: 10px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.label-option {
  display: flex;
  gap: 5px;
  background: #f3f3f3;
  padding: 7px 14px;
  border-radius: 5px;
}

.select_option .checkbox-simple2 input[type="checkbox"]:checked {
  border: solid #a5a5a5;
  border-width: 0 2px 2px 0;
}
.select_option .checkbox-simple2 {
  border: 2px solid #a5a5a5;
}

.label-option p {
  color: #726c6c;
  font-weight: 500;
}
.grind-description {
  display: none;
}
.grind-description,
.grind-description p {
  color: #a5a5a5;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.grind-description.checked {
  display: block;
}

.grid_options {
  display: none;
}

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

.product_price {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  padding: 10px 0;
  align-items: end;
}
.price_values {
  display: flex;
  gap: 20px;
  align-items: center;
}
.oldprice {
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-size: 21px;
  font-weight: 400;
}
.realprice {
  font-size: 36px;
  color: black;
  font-weight: 600;
}
.promo_line {
  color: #b9bbbf;
  font-size: 14px;
}

.product-details .symbols {
  padding-top: 15px;
  gap: 10px;
  border-top: 1px solid #dddddd;
}

.ref_product span:first-child {
  margin-right: 70px;
}

.product-add-cart-success,
.product-add-cart-error {
  margin-top: 1rem;
  text-align: end;
}

.product-add-cart-error {
  color: #c72015;
}

.product-add-cart-success,
.product-add-cart-error {
  display: none;
}

/* Carrinho */

.cart_steps {
  display: flex;
  gap: 60px;
  max-width: 800px;
  justify-content: center;
  margin: auto;
  margin-top: 20px;
}
.cart_item_step .cart_item {
  display: flex;
  gap: 15px;
  align-items: center;
}
.cart_item .circle {
  background-color: #b1b5c3;
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fcfcfd;
  font-weight: 500;
}
.cart_item .name {
  color: #b1b5c3;
  font-size: 16px;
  font-weight: 400;
  max-width: 100px;
}


.cart_item_step.active .circle {
  background-color: #512100;
}
.cart_item_step.active .name {
  color: #512100;
}

.cart_item_step.green .name {
  color: #2c8e60;
}
.cart_item_step.green .circle {
  background-color: #2c8e60;
}
.cart_item_step.green::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #2c8e60;
  margin-top: 10px;
}

.cart_page {
  display: flex;
  width: 100%;
  gap: 40px;
}
.cart_list {
  width: 67.5%;
}
.cart_end {
  width: 32.5%;
  /*A.M 27 de Novembro Funcionamento de sticky dá jeito ter isto*/
}

.cart_item_step.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #512100;
  margin-top: 10px;
}

.line-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #ababab;
}

.line-1 .prod_total {
  font-size: 14px;
  font-weight: 400;
  color: #a5a5a5;
}

.orderhistory .line-1,
.orderhistory .line-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orderhistory .line-1 {
  border-top: 1px solid #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
  line-height: 3;
  margin-top: 10px;
}

.orderhistory .line-2 {
  border-bottom: 1px dotted #ddd;
  line-height: 2;
  padding: 10px 0;
}

.orderhistory .total-all {
  margin-top: 40px;
}

.orderhistory .total {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  line-height: 2;
}
.orderhistory .total .history-price {
  width: 150px;
  text-align: right;
  padding-right: 10px;
}

.orderhistory .line-1 > div,
.orderhistory .line-2 > div {
  width: 33%;
}

.orderhistory .line-1 div:nth-child(2),
.orderhistory .line-2 div:nth-child(2),
.orderhistory .line-1 div:nth-child(3),
.orderhistory .line-2 div:nth-child(3) {
  text-align: center;
}

.orderhistory .line-1 div:nth-child(1),
.orderhistory .line-2 div:nth-child(1) {
  padding-left: 10px;
}

.orderhistory .line-1 div:nth-child(4),
.orderhistory .line-2 div:nth-child(4) {
  text-align: right;
  padding-right: 10px;
}

.orderhistory .total > div:first-child {
  font-weight: 500;
}

.orderhistory .main_button {
  margin-left: auto;
}

.product_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #e8ecef;
  gap: 20px;
}

.product_box .counter {
  max-width: fit-content;
  border-radius: 5px;
  max-height: 32px;
  border: 1px solid #ababab;
  background: white;
}

.product_box .counter input {
  font-size: 14px;
}

.product-name {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 260px;
  width: 100%;
  justify-content: space-between;
}

.product-name div {
  text-align: left;
}

.product-name .text {
  max-width: 180px;
  width: 100%;
  text-align: left;
}

.product-name .history-price {
  text-align: left !important;
  padding-left: 10px;
}

.product_box .text h1,
.product_box .text h1 a {
  font-size: 16px;
  color: black;
}

.product_box .text .prod_title:last-of-type {
  margin-bottom: 5px;
}

.product_box .text a h1:last-of-type {
  margin-bottom: 5px;
}

.product_box .text h1 a:hover {
  color: var(--hover-color);
}
.product_box .text p {
  font-size: 14px;
  line-height: 1.5;
  color: #6c7275;
}

.cart_price {
  display: flex;
  gap: 30px;
  text-wrap: nowrap;
}

.cart_price .oldprice {
  font-size: 18px;
  color: #a5a5a5;
  text-decoration: line-through;
}

.cart_price .realprice {
  color: #121212;
  font-weight: 500;
  font-size: 18px;
}

.cart_end {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cart_box {
  border-radius: 5px;
  border: 1px solid #ababab;
  padding: 20px;
  color: #141718;
}

#plk-order-form .cart_end {
  padding-bottom: 20px;
}

#plk-order-form .cart_end .cart_box {
  position: sticky; /* Adicionado A.M. 27 de Novembro permitir translação vertical do carrinho ao longo da encomenda */
  top: 100px;
}

.cart_box h1 {
  font-size: 20px;
  font-weight: 500;
}
.cart_box h2 {
  font-weight: 500;
}
.cart_box .header {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.cart_box .header span {
  color: #ababab;
  font-size: 16px;
  padding-top: 6px;
}

.all_boxs .cart_box:last-child {
  margin-bottom: 40px !important;
}

.cartline {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 1.5;
}
.cartline span:last-child {
  font-weight: 500;
}
.cartline .voucher {
  display: flex;
  gap: 5px;
}

.cart_values_total {
  font-weight: 500;
  font-size: 20px;
}
.total_iva {
  color: #5c5c5c;
}

.code_promo {
  display: flex;
  position: relative;
}

.code_promo input {
  width: 75%;
  border: 1px solid #ccc;
  border-radius: 10px 0 0 10px;
  position: relative;
  border-right: none;
  color: #6c7275;
  font-weight: 500;
  font-size: 16px;
  padding: 0 10px 0 40px;
}

.cart_box .main_button {
  max-width: -webkit-fill-available;
  width: 100%;
  font-weight: 500;
  padding: 15px;
  margin-bottom: 0;
}

.code_promo .main_button {
  min-width: fit-content;
  max-width: -webkit-fill-available;
  width: 25%;
  font-size: 16px;
}

.code_promoicon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.cart_values_box {
  padding: 20px 0;
}

.product_box .last_column {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 205px;
  width: 100%;
  justify-content: end;
}

.realprice.mobileonly {
  display: none;
  color: #121212 !important;
}

/* Carrinho 02 - order */

.order .cart_list .header {
  margin-top: 20px;
}
.order .cart_list {
  display: flex;
  flex-direction: column;
}
.order .cart_list .main_button {
  width: 100%;
  max-width: -webkit-fill-available;
}

/* payment method */

.radio_input {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.payment_method {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid black;
  border-radius: 5px;
}

.payment_method label {
  display: flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
}

.payment_method image {
  max-height: 25px;
  height: 100%;
  width: auto;
}

.identifier {
  display: flex;
  gap: 5px;
  align-items: center;
}

.payment_method .space_between {
  display: flex;
  width: 100%;
  justify-content: space-between;
  min-height: 24px;
  align-items: center;
}

.payment_active {
  display: none;
}

.payment_method.active {
  background-color: #f3f5f7;
}

.payment_method.active .payment_active {
  display: flex;
}
.identifier .image {
  width: 35px;
  display: flex;
}
.identifier .image img {
  display: flex;
  margin: auto;
}

/*Carrinho: Página 2 - Entrega e Pagamento */

.cart_end .product_box {
  justify-content: unset;
  align-items: unset;
}

.cart_end .cart_price {
  margin-left: auto;
}

.cart_end .product_box .counter {
  height: 60px;
  max-width: 90px;
  width: 100%;
  margin-top: 5px;
}

.cart_end .product_list {
  display: flex;
  flex-direction: column;
}

.cartline.promo_line span:first-child {
  display: flex;
  gap: 5px;
}
.cartline.promo_line span:last-child {
  font-weight: 500;
  color: #2c8e60;
}

.cartline.promo_line {
  border-bottom: 1px solid #e8ecef;
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
}

/*Carrinho: Página 3 - Encomenda finalizada */
.order_end_page {
  max-width: 750px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1);
  align-items: center;
  flex-direction: column;
}
.order_end_box {
  max-width: 500px;
  width: 100%;
  margin: 100px;
}
.order_end_box h3 {
  font-weight: 400;
  text-align: center;
}

.order_end_box a {
  font-weight: 600;
  color: black;
}

.thankyou_message {
  color: #6c7275;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.order_end_box .lines {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  gap: 20px;
  max-width: max-content;
  margin: auto;
}
.order_end_box .line {
  display: flex;
  gap: 20px;
}
.order_end_box .line span {
  font-size: 14px;
  font-weight: 500;
}
.order_end_box .line span:first-child {
  color: #6c7275;
  min-width: 150px;
}
.order_end_box .line span:last-child {
  color: 121212;
}
.order_end_box .main_button {
  margin: auto;
  padding: 15px 40px;
}

/*Listagem de Produtos - Category */

.section_category {
  display: flex;
  width: 100%;
  column-gap: 30px;
}

.filters {
  max-width: 225px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.filters .header_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 20px;
}
#filterButton h1,
.filters .header_div h1 {
  color: #121212;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
}

.appear_filter.active {
  color: #121212;
  border-bottom: 1px solid black;
  max-width: fit-content;
}

.appear_filter {
  color: #6c7275;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.list_filters {
  margin: 20px 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
}
.products_list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.appear_product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6c7275;
  font-weight: 500;
}

.products_list .top {
  display: flex;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-weight: 400;
}

.products_list .price_div {
  display: flex;
  align-items: center;
}

.price_div select {
  padding: 0;
  cursor: pointer;
}
.price_div img {
  cursor: pointer;
  pointer-events: none;
}

.checkbox_black {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  cursor: pointer;
}

.checkbox_black .checkmark {
  position: relative;
  padding-left: 24px; /* Ajustado para corresponder ao novo tamanho */
  display: inline-block;
  height: 24px; /* Ajustado para corresponder ao novo tamanho */
}

.checkbox_black input {
  width: 24;
  opacity: 0;
  position: absolute;
}

.checkbox_black .checkmark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px; /* Ajustado para corresponder ao novo tamanho */
  height: 24px; /* Ajustado para corresponder ao novo tamanho */
  border: 2px solid var(--brown-title);
  background-color: white;
  border-radius: 3px;
}

.checkbox_black .checkmark:hover::before {
  background-color: var(--brown-title);
  border-color: var(--brown-title);
  content: "\2713";
  color: white;
  text-align: center;
  line-height: 24px;
}

.checkbox_black input:checked + .checkmark::before {
  content: "\2713";
  color: white;
  text-align: center;
  line-height: 24px;
  background-color: var(--brown-title);
  border: 2px solid var(--brown-title);
}

.checkbox_black input:checked ~ .label-text {
  color: #27190e; /* Cor preta ou a cor desejada */
}

.checkbox_black .label-text {
  transition: color 0.3s;
}

.checkbox_black:hover .checkmark::before {
  background-color: var(--brown-title);
  border-color: var(--brown-title);
  content: "\2713";
  color: white;
  text-align: center;
  line-height: 24px;
  transition: background-color 0.3s, color 0.3s;
}

.checkbox_black:hover .label-text {
  color: #27190e; /* Cor preta ou a cor desejada */
}

.checkbox_black input[type="checkbox"] {
  -webkit-tap-highlight-color: transparent; /* remove highlight do toque */
  touch-action: manipulation; /* ajuda toque rápido */
}

#filterButton {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
}

.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;
}

.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;
}

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

/* Popup coffee*/

.popup_coffee , .popup_box{
  max-width: 825px;
  width: 100%;
  padding: 20px;
  margin: 20px;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.popup_coffee label.error {font-size: 14px; font-weight: 500;padding: 0;}

.popup_close {
  position: absolute;
  right: 20px;
  top: 20px;
}

.popup_coffee .cart_item_step .cart_item {
  flex-direction: column;
  align-items: baseline;
}

.popup_coffee .cart_steps {
  gap: 0px;
}

.popup_coffee .cart_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coffee_item_step {cursor: not-allowed;}
.coffee_item_step.active{cursor:pointer;}

.coffee_item_step .circle {
  background-color: white;
  border: 2px solid #a5a5a5;
  color: #000000;
  text-align: left;
}
.coffee_item_step .name {
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  padding-right: 40px;
}

.coffee_item_step {
  display: flex;
  text-align: left;
}

.popup_coffee .flex_line {
  display: flex;
  align-items: center;
  width: 100%; /* Garante que o elemento flex_line ocupe toda a largura do container */
}

.popup_coffee .flex_line .line {
  width: 50px;
  height: 2px; /* Espessura da linha horizontal */
  background-color: #ccc; /* Cor da linha horizontal, ajuste conforme necessário */
  margin: 0 5px; /* Espaço ao redor da linha, ajuste conforme necessário */
}

.coffee_item_step.active .line {
  background-color: #512100;
}
.coffee_item_step.active .circle {
  background-color: #512100;
  border: none;
}
.coffee_item_step.active p {
  display: none;
}
.coffee_item_step.active .on_active {
  display: flex;
}
.coffee_item_step.active .name {
  color: #512100;
}

.on_active {
  display: none;
}

.levels {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.levels h2 {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: -30px;
  gap: 20px;
  font-size: 22px;
}

.levels_box {
  display: flex;
  flex-direction: column;
  padding: 0 0px 0 30px;
  margin-bottom: 30px;
}

.levels_box h2 {
  margin-bottom: 0;
}

.level_box {
  position: relative;
}

.level_box span {
  color: #2e1008;
  font-size: 22px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  padding: 20px;
  border: 1px solid #977150;
  display: flex;
  align-items: center;
  border-radius: 5px;
  background-color: white;
  margin-top: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}

.level_box .circle {
  background-color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle.not_active {
  display: none;
}

.level_box input[type="radio"]:checked + span .circle.not_active {
  display: flex;
}

/* Opcional: Estilizando o próprio label */
.level_box input[type="radio"]:checked + span {
  color: #fff; /* Cor do texto quando checado */
  background-color: #977150; /* Cor de fundo quando checado */
}

.level_box::before {
  content: ""; /* Necessário para criar o pseudo-elemento */
  position: absolute;
  left: -30px; /* Distância da borda esquerda */
  top: 0;
  bottom: 0;
  width: 18px; /* Largura da imagem */
  background-image: url("/i/grain_light.svg"); /* Substitua pelo caminho da sua imagem */
  background-repeat: repeat-y; /* Repetir verticalmente */
  background-size: contain; /* Ajustar o tamanho da imagem */
  display: block;
  background-size: 13px 21px;
}

.levels_box:nth-child(1)::before {
  background-image: url("/i/grain_light.svg");
}

/* Segundo filho (médio) */
.level_box:nth-child(2)::before {
  background-image: url("/i/grain_medium.svg");
}

/* Terceiro filho (forte) */
.level_box:nth-child(3)::before {
  background-image: url("/i/grain_dark.svg");
}

.levels_coffee {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.levels_box {
  display: none;
}

.levels_box.show {
  display: flex;
}

#popupcoffee , .general_popup{
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Login */
.user {
  align-items: center;
  display: flex;
}

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

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

.user .profile-pic {
  max-width: 25px;
  max-height: 25px;
}

.profile-pic {
  justify-content: center;
  display: flex;
  align-items: center;
}

.search_on_menu {
  width: 100%;
  padding: 0 10px;
  display: none;
}

.search {
  cursor: pointer;
}
.search_close {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.search_label {
  max-width: 500px;
  margin-left: auto;
  position: relative;
  width: 100%;
}

.search_label input {
  width: 100%;
  height: 48px;
  display: flex;
  border: 1px solid var(--brown-medium);
  font-size: 16px;
  border-radius: 10px;
  padding: 0;
  padding-left: 1rem;
}

/* Estilos para quando a busca está ativa */
#menu_position_fix.search_active #plk-search-form {
  display: flex; /* Mostra o campo de busca */
}

#menu_position_fix.search_active .menu_mobile {
  display: none;
}

/* Página Cart_op, order e interfaces anexas*/

.product_cats .cart .image {
  display: flex;
  margin: auto;
}

.base_page_text p {
  margin-bottom: 10px;
  line-height: 1.5;
}

#plk-order-billing-address {
  display: none;
  margin-top: 40px;
}

.order_billing_input.label-simple-wp span:first-of-type {
  color: #6c7275;
  font-weight: 400;
  font-size: 16px;
}

.cart_box .form-error {
  margin-bottom: 0;
  font-size: 12px;
}

.store_terms .store_terms_input span {
  color: var(--text-color2);
  font-weight: 400;
}

.store_terms .store_terms_input span a {
  font-weight: 500;
  color: black;
}

.store_terms .store_terms_input span a:hover {
  color: var(--hover-color);
}

.store_terms .store_terms_input {
  gap: 5px;
}

.store_terms .store_error {
  min-height: 24px;
}

.check_deliveries,
.check_deliveries a {
  font-size: 16px;
  color: black;
}
.check_deliveries a {
  font-weight: 500;
}

.check_deliveries a:hover {
  color: var(--hover-color);
}

.lang_select {
  width: auto;
  padding: 0;
  cursor: pointer;
}

.tablink.disabled {
  pointer-events: none;
  cursor: not-allowed;
}

.popup_coffee .main_button {
  min-width: 180px;
}

.popup_coffee .results {
  padding: 0 30px;
  margin-bottom: 40px;
  display: none;
}

.bottom_popup {
  display: flex;
  justify-content: end;
  width: 100%;
  gap: 10px;
}

.popup_coffee .buy_btn {
  height: 51px;
  background-color: var(--cream-color);
  color: var(--brown-light) !important;
  display: none;
}

.main_button.showresults {
  display: none;
}

.tablink.coffee_item_step:last-of-type .cart_item {
  max-width: 40px;
}

.email_footer {
  display: flex;
  gap: 10px;
}
.email_footer .box {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #452a23;
}

.recovery_page h2 {
  margin-bottom: 20px;
}
.recovery_page {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: initial;
  padding-top: 125px;
}

.login_form .form-error-message,
.login_form .form-userreg-success-message {
  font-size: 14px;
  padding-top: 5px;
}

/* seletor linguas */
.dropdown-wrapper-lang {
  padding: 0 0 0;
  margin: 0 0 0;
  position: relative;
}

.dropdown-item-lang {
  padding: 0 0 0;
  margin: 15px -15px 0;
  font-size: 16px;
  letter-spacing: 0;
  min-width: 330px;
  text-align: left;
  background-color: var(--hover-color);
  border-radius: 20px;
  color: white;
  top: 100%;
  left: auto;
  right: 0;
  position: absolute;
  z-index: 5;
  display: none;
}

.dropdown-item a {
  color: inherit;
  padding: 10px 0px;
}

.btn-toggle-dropdown.select-language {
  color: black;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 555;
  display: inline-flex;
  font-size: 22px;
  width: 24px;
}

.dropdown-select-language .dropdown-item {
  min-width: 45px;
  text-align: center;
  top: 20px;
}

.dropdown-select-language a {
  display: block;
}

.dropdown-select-language a:hover {
  color: var(--brownreddier);
}

/*end linguas */

.remove_address {
  margin-left: auto;
  margin-top: 20px;
}

.remove_address .buttons {
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-top: 10px;
}

.remove_address .buttons .main_button {
  margin-bottom: 0;
}

.new_address {
  margin-top: 20px;
}

.morada_fat_item.editAddress,
.morada_fat_item.editAddress .plk-useraddress-record {
  width: 100%;
  max-width: 100%;
}

.morada_fat_item.editAddress .plk-useraddress-record {
  padding-left: 10px;
}

#plk-new-address-success-message {
  color: green;
}

.cart_box .blue {
  font-weight: 500;
}

.order-delivery2-button-wrapper {
  display: flex;
  gap: 5px;
  justify-content: end;
  margin-top: 10px;
}

.selector_fats {
  border: 1px solid #d5dae1;
  font-size: 16px;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.search_on_menu label.error {
  display: none !important;
}

.g_id_signin {
  margin: auto;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.errorpage {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.visa_button {
  display: flex;
  margin: auto;
}
.visa_button .main_button {
  display: flex;
  height: 10px;
  font-size: 14px;
}

.banner_wizard .cta_text_box2 {
  max-width: 720px;
}

/*2024-11-20 - JD*/

.page-faq h1 {
  font-size: 20px;
}

.page-faq .faq_pf {
  padding: 10px 20px;
}

.info-prem > .title-global ~ .cta_text_box .title {
  display: none;
}

.title-global {
  margin-bottom: 40px;
}

.tooltip{cursor: help;}

.tooltip-text {
  width: 90%;
  background-color: rgba(151, 113, 80, 0.9);
  color: #fff; /* Cor do texto */
  text-align: left;
  padding: 5px 10px;
  border-radius: 5px;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  transition: opacity 0.3s;
  visibility: hidden;
  opacity: 0;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.title-wizard {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

.image-formato > div:nth-child(odd) img {
  border-top-left-radius: 25%;
  border-bottom-right-radius: 25%;
  box-shadow: 10px 10px 10px -5px rgba(0, 0, 0, 0.2); /* Sombra à direita e embaixo */
}
.image-formato > div:nth-child(even) img {
  border-top-right-radius: 25%;
  border-bottom-left-radius: 25%;
  box-shadow: 10px 10px 10px -5px rgba(0, 0, 0, 0.2); /* Sombra à direita e embaixo */
}

.image-formato-left img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

#plk-product-list {
  position: relative;
}
.plk_product_empty {
  position: absolute;
  width: 100%;
  padding-top: 75px;
}

.plk_video_play {
  max-height: 700px;
  display: flex;
  margin: auto;
  width: 100%;
  height: auto;
}

.plk_video_product {
  max-width: 736px;
  max-height: 736px;
  display: flex;
  margin: auto;
  width: 100%;
  height: auto;
}

/* 2025-07-17 A.M. Estilização do video no produto, thumb + video, necessita de ser melhorado */
.plk_video_play video,
.plk_video_product video {
  width: 100%;
  height: auto;
}
/*
.thumb-image {max-width: 154px; width: 100%; display: flex; align-items: center; justify-content: center; max-height: 141px; height: 100% !important; }
.thumb-image span {width: 100%; height:100%; display: flex; align-items: center; justify-content: center; }
*/

.thumb-image {
  justify-content: center;
  display: flex;
  margin-bottom: 20px;
}

.thumb-video {
  width: 100%;
  height: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thumb-video svg {
  width: 40%;
  height: 40%;
}

.plk_banner_video_player {
  width: 100%;
  height: 100%;
}

.plk_banner_video_player video {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.thumb_div_video {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.thumbs .slick-prev {
  top: -15px;
  left: 43%;
}

.thumbs .slick-prev:before {
  content: url("../i/arrow_up.svg");
}

.thumbs .slick-next {
  bottom: -15px;
  left: 43%;
  top: 70%;
}

.thumbs .slick-next:before {
  content: url("../i/arrow_down.svg");
  top: 100%;
}

.thumbs .slick-prev:before,
.thumbs .slick-next:before {
  color: black;
  transition: transform 0.3s ease; /* efeito suave */
}

/*JD-06-08-2025*/

.title-mobile-menu {
  display: none;
}

strong {
  font-weight: bold !important;
}


/*estrelas Tiago*/
.stars-container {
  --starsWidth: 100px;
  background-color: #ffffff;
  position: relative;
  width: var(--starsWidth);
  min-width: var(--starsWidth);
}
.stars-absolute {
  width: var(--starsWidth);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.stars-filled {
  overflow: hidden;
}
/*estrelas Tiago*/

.stream_overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #1c1d31ec;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  padding: 8px;
  border-radius: 8px;
  max-height: 162px;
}
.stream_overlay_img img {
  border-radius: 8px;
  max-height: 150px !important;
  width: auto !important;
}

.commentary_record {margin-bottom: 20px;}
.commentary_record .stars-container , .product_rating .stars-container   {margin-bottom: 10px;}

#plk_form_rating .cls-2-filledstars, #plk_form_rating .cls-1-filledstars, #plk_form_rating .stars-absolute, #plk_form_rating .stars{cursor:pointer;  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;}

.info_product_description{display:none}
.info_product_description.active{display:block}

#plk_rating_tab .stars-container{margin: 5px 0;}

.rating_list_div::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.form_div textarea{    resize: none;
  background-color: white;
  border: 1px solid #d5dae1;
  font-size: 16px;
  width: 100%;
  height: 100px;
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--blue-dark);
}


.rating-section .title{margin-bottom:20px;}

.forbidden {line-height: 24px;}
.forbidden a {color:black; font-weight: 600;}

.forbidden h1{margin-bottom: 10px;
  color: var(--brownreddier);
  font-size: 20px;
}

.forbidden .main_button { font-size: 16px; padding: 10px;margin-top: 20px;font-weight: 500;}


.page_quiz .popup_coffee {max-width: 100%;  margin: 0;padding: 80px 0;}

.page_quiz #popupcoffee{display:flex !important;position: unset; transform: none; align-items: unset; max-width: 1200px;  margin: auto;}

.page_quiz .popup_close {display:none}

.login_page.login_rating{background-image: none; height:55vh; flex-direction: column; max-width: 450px;/*margin:auto*/}

.noaccess_rating p {font-weight: 600;}
.noaccess_rating {margin-bottom: 40px;}

.campaign_banner {padding-top:20px;}