/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Spartan:wght@400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  --first-color: hsl(176, 88%, 27%);
  --first-color-alt: hsl(129, 44%, 94%);
  --second-color: hsl(34, 94%, 87%);
  --title-color: hsl(0, 0%, 13%);
  --text-color: hsl(154, 13%, 32%);
  --text-color-light: hsl(60, 1%, 56%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 93%);
  --border-color: hsl(129, 36%, 85%);
  --border-color-alt: hsl(113, 15%, 90%);

  /*========== Font and typography ==========*/
  --body-font: 'Lato', sans-serif;
  --second-font: 'Spartan', sans-serif;
  --big-font-size: 3.5rem;
  --h1-font-size: 2.75rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.75rem;
  --h4-font-size: 1.375rem;
  --large-font-size: 1.125rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  --tiny-font-size: 0.6875rem;

  /*========== Font weight ==========*/
  --weight-100: 100;
  --weight-400: 400;
  --weight-500: 500;
  --weight-600: 600;
  --weight-700: 700;

  /*========== Transition ==========*/
  --transition: cubic-bezier(0, 0, 0.05, 1);

  /*========== Custom Variables ==========*/
  --box-padding: 0.5rem 1rem;
  --box-border-radius: 0.25rem;
  --box-border: 2px solid transparent;
  --box-active-border: 2px solid var(--first-color);
  --box-background-color: var(--container-color);
  --box-hover-background-color: var(--first-color-alt);
}

/*=============== ANIMATION PULSATE ===============*/
@keyframes pulsate {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.pulsate {
  animation: pulsate 1s infinite !important;
  color: rgb(62, 121, 6) !important;
  font-weight: bold !important;
  background-color: rgb(255, 255, 255) !important;
  padding: 0.5rem !important;
  border-radius: 0.25rem !important;
  text-align: center !important;
}

/* Responsive typography */
@media screen and (max-width: 1200px) {
  :root {
    --big-font-size: 2.25rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.375rem;
    --h3-font-size: 1.25rem;
    --h4-font-size: 1.125rem;
    --large-font-size: 1rem;
    --normal-font-size: 0.9375rem;
    --small-font-size: 0.8125rem;
    --smaller-font-size: 0.6875rem;
    --tiny-font-size: 0.625rem;
  }
}

.discount-badge2 {
  background-color: hsl(341, 100%, 73%); /* Rosa */
  color: #fff; /* Cor do texto branca */
  font-weight: bold;
  font-size: 14px; /* Tamanho da fonte */
  padding: 5px 10px; /* Espaçamento interno */
  border-radius: 3px; /* Cantos arredondados */
  position: relative; /* Para usar z-index */
  display: inline-block; /* Para ajustar o tamanho ao conteúdo */
  margin-bottom: 10px; /* Espaçamento abaixo do badge */
  z-index: 10; /* Garante que o badge apareça acima de outros elementos */
}

.showcase__content2 {
  position: relative;
  padding: 10px 0;
  text-align: center;
  z-index: 1;
}

.showcase__content2 h4, 
.showcase__content2 .showcase__price {
  color: black; /* Aplicado apenas ao título e preços dentro de showcase__content2 */
}



/*=============== BASE ===============*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
textarea,
body {
 
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--weight-400);
}

body {
  background-color: var(--body-color);
}

h1,
h2,
h3,
h4 {
  
  color: var(--title-color);
  font-weight: var(--weight-600);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  line-height: 1.5rem;
}

img {
  width: 100%;
}

button,
textarea,
input {
  background-color: transparent;
  border: none;
  outline: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 0.75rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 2rem;
}

.section--lg {
  padding-block: 0rem;
}

.section__title {
  font-size: var(--h4-font-size);
  margin-bottom: 1.5rem;
}

.section__title span {
  color: var(--first-color);
}

.form__input {
  border: 1px solid var(--border-color-alt);
  padding-inline: 1rem;
  height: 45px;
  border-radius: 0.25rem;
  font-size: var(--small-font-size);
}

.new__price {
  color: #00794D;
  font-weight: var(--weight-600);
}

.old__price {
  color:#555555;
  font-size: var(--small-font-size);
  text-decoration: none;
}

.form {
  row-gap: 0.5rem;
}

.form__group {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.textarea {
    height: 200px; /* Aumente a altura */
    width: 100%; /* Certifique-se de que ocupe toda a largura */
    padding: 1rem; /* Ajuste o preenchimento interno */
    resize: none; /* Opcional: para desabilitar o redimensionamento manual */
    border: 1px solid var(--border-color-alt); /* Personalize o estilo da borda */
    border-radius: 8px; /* Para cantos arredondados */
}

/*=============== HEADER & NAV ===============*/
.header__top {
  background-color: var(--first-color-alt);
  border-bottom: 1px solid var(--first-color);
  padding-block: 0.875rem;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__contact span:first-child {
  margin-right: 2rem;
}

.header__contact span,
.header__alert-news,
.header__top-action {
  font-size: var(--small-font-size);
}

.header__alert-news {
  color: var(--text-color-light);
  font-weight: var(--weight-600);
}

.header__top-action {
  color: var(--text-color);
}

.nav,
.nav__menu,
.nav__list,
.header__user-actions {
  display: flex;
  align-items: center;
}

.nav {
  height: calc(var(--header-height) + 2.5rem);
  justify-content: space-between;
  column-gap: 1rem;
}

.nav__logo-img {
  width: 120px;
}

.nav__menu {
  flex-grow: 1;
  margin-left: 2.5rem;
}

.nav__list {
  column-gap: 2.5rem;
  margin-right: auto;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--weight-700);
  transition: all 0.2s var(--transition);
}

.header__search {
  width: 340px;
  position: relative;
}

.header__search .form__input {
  width: 100%;
}

.search__btn {
  position: absolute;
  top: -4%;
  right: 0rem;
  cursor: pointer;
  
  /* Correções de área de toque */
  min-width: 48px;
  min-height: 48px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__input {
  min-height: 48px;
  font-size: 16px;
  padding: 10px;
}



.header__user-actions {
  column-gap: 1.25rem;
}

.header__action-btn {
  position: relative;
}

.header__action-btn img {
  width: 24px;
}

.header__action-btn .count {
  position: absolute;
  top: -0.625rem;
  right: -0.625rem;
  background-color: var(--first-color);
  color: var(--body-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  border-radius: 50%;
  text-align: center;
  font-size: var(--tiny-font-size);
}

.nav__menu-top,
.nav__toggle {
  display: none;
}

/* Active link */
.active-link,
.nav__link:hover {
  color: var(--first-color);
}

/*=============== HOME ===============*/
.home__container {
  grid-template-columns: 5fr 7fr;
  align-items: center;
}

.home__subtitle,
.home__description {
  font-size: var(--large-font-size);
}

.home__subtitle {
  font-family: var(--second-font);
  font-weight: var(--weight-600);
  margin-bottom: 1rem;
  display: block;
}

.home__title {
  font-size: var(--h1-font-size);
  font-weight: var(--weight-700);
  line-height: 1.4;
}

.home__title span {
  color: var(--first-color);
  font-size: var(--big-font-size);
}

.home__description {
  margin-block: 0.5rem 2rem;
}

.home__img {
  justify-self: flex-end;
}

/*=============== BUTTONS ===============*/
.btn {
  display: inline-block;
  background-color: var(--first-color);
  border: 2px solid var(--first-color);
  color: var(--body-color);
  padding-inline: 1.75rem;
  height: 49px;
  line-height: 49px;
  border-radius: 0.25rem;
  font-family: var(--second-font);
  font-size: var(--small-font-size);
  font-weight: var(--weight-700);
  transition: all 0.4s var(--transition);
}

.btn:hover {
  background-color: transparent;
  color: var(--first-color);
}

.btn--md,
.btn--sm {
  font-family: var(--body-font);
}

.btn--md {
  height: 45px;
  line-height: 42px;
}

.btn--sm {
  height: 40px;
  line-height: 36px;
}

.flex {
  display: flex;
  align-items: center;
  column-gap: 0.247rem;
}

/*=============== CATEGORIES ===============*/
.categories {
  overflow: hidden;
}

.category__item {
  text-align: center;
  border: 1px solid var(--border-color);
  padding: 0.625rem 0.625rem 1.25rem;
  border-radius: 1.25rem;
}

.category__img {
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
}

.category__title {
  color: var(--text-color);
  font-size: var(--small-font-size);
}

/* Swiper class */
.swiper {
  overflow: initial;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: '';
}

.swiper-button-next,
.swiper-button-prev {
  top: -1.875rem;
  background-color: var(--first-color-alt);
  border: 1px solid var(--border-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--first-color);
  font-size: var(--tiny-font-size);
}

.swiper-button-prev {
  left: initial;
  right: 2.5rem;
}

.swiper-button-next {
  right: 0;
}



/*=============== PRODUCTS ===============*/
.tab__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tab__btn {
  background-color: var(--container-color);
  color: var(--title-color);
  padding: 1rem 1.25rem 0.875rem;
  border-radius: 0.25rem;
  font-family: var(--second-font);
  font-size: var(--small-font-size);
  font-weight: var(--weight-600);
  cursor: pointer;
}



.products__container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); /* Ajuste automático com mínimo de 250px por coluna */
  gap: 1rem; /* Ajuste o gap para reduzir o espaço entre os produtos */
  justify-content: center;
  align-items: center;


}

@media (max-width: 768px) {
  .products__container {
      grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas menores */
  }
}

@media (max-width: 480px) {
  .products__container {
      grid-template-columns: 1fr; /* 1 coluna em telas muito pequenas */
  }
}


.product__item {
  width: 185px;
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  transition: all 0.2s var(--transition);
}

.product__banner {
  
  display: flex; /* Usa flexbox para centralizar */
  align-items: center; /* Centraliza verticalmente */
  object-fit: cover;
  margin: 0 auto; /* Centraliza o container dentro de qualquer elemento pai */
  padding: 0.625rem 0.75rem 0.75rem 0.75rem;
}

.product__banner,
.product__images {
 
  position: relative;
}

.product__images {
  display: block;
  overflow: hidden;
  border-radius: 1.25rem;
}

.product__img {
  vertical-align: middle;
  transition: all 3s var(--transition);
}

.product__item:hover .product__img {
  transform: scale(1.1);
}

.product__img.hover {
  position: absolute;
 
  top: 0;
  left: 0;
}

.product__actions {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  column-gap: 0.5rem;
  transition: all 0.2s var(--transition);
}

.action__btn {
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--first-color);
  border: 1px solid var(--border-color);
  color: var(--body-color);
  font-size: var(--small-font-size);
  position: relative;
}

.action__btn::before,
.action__btn::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

.action__btn::before {
  content: '';
  top: -2px;
  border: 0.5rem solid transparent;
  border-top-color: var(--first-color);
}

.action__btn::after {
  content: attr(aria-label);
  bottom: 100%;
  background-color: var(--first-color);
  color: var (--body-color);
  font-size: var(--tiny-font-size);
  white-space: nowrap;
  padding-inline: 0.625rem;
  border-radius: 0.25rem;
  line-height: 2.58;
}

.product__badge {
  position: absolute;
  left: 1.25rem;
  top: 0.8rem;
  background-color: var(--first-color);
  color: var(--body-color);
  padding: 0.25rem 0.625rem;
  border-radius: 2.5rem;
  font-size: var(--tiny-font-size);
}

.product__badge.light-pink {
  background-color: hsl(341, 100%, 73%);
}

.product__badge.light-green {
  background-color: hsl(155, 20%, 67%);
}

.product__badge.light-orange {
  background-color: hsl(24, 100%, 73%);
}

.product__badge.light-blue {
  background-color: hsl(202, 53%, 76%);
}

.product__content {
  padding: 0 1.25rem 1.125rem;
  position: relative;
}

.product__category {
  color: #555555;
  font-size: var(--smaller-font-size);
}

.product__title {
  font-size: var(--normal-font-size);
  margin-block: 0.75rem 0.5rem;
  line-height: 1.2;                       /* altura de cada linha */
  height: calc(1.2em * 2);                /* exatamente 2 linhas */
  display: -webkit-box;                   /* habilita o clamp */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;                  /* máximo de 2 linhas */
  overflow: hidden;                       /* esconde o excesso */
  text-overflow: ellipsis;                /* reticências no fim */
}


.product__rating {
  color: hsl(42, 100%, 50%);
  font-size: var(--smaller-font-size);
  margin-bottom: 0.75rem;
}

.product__price .new__price {
  font-size: var(--large-font-size);
}

.cart__btn {
  position: absolute;
  bottom: 3.6rem;
  right: 0.3rem;
}

/* Active Tab */
.tab__btn.active-tab {
  color: #004D40;
  background-color: #FFE0B2;
}

.tab__item:not(.active-tab) {
  display: none;
}

/* Product Hover */
.product__img.hover,
.product__actions,
.action__btn::before,
.action__btn::after,
.product__item:hover .product__img.default {
  opacity: 0;
}

.product__item:hover {
  box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
}

.product__item:hover .product__img.hover,
.product__item:hover .product__actions,
.action__btn:hover::before,
.action__btn:hover::after {
  opacity: 1;
}

.action__btn:hover::before,
.action__btn:hover::after {
  transform: translateX(-50%) translateY(-0.5rem);
}

.action__btn:hover {
  background-color: var(--first-color);
  border-color: var(--first-color);
  color: var (--body-color);
}

/*=============== DEALS ===============*/
.deals__container {
  grid-template-columns: repeat(2, 1fr);
}

.deals__item:nth-child(1) {
  background-image: url(../img/deals-1.jpg);
}

.deals__item:nth-child(2) {
  background-image: url(../img/deals-2.png);
}

.deals__item {
  padding: 1rem;
  
  background-position: center;
  background-repeat: no-repeat; /* Adicione esta linha para evitar repetição da imagem */
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.deals__img {
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}




.deals__brand {
  color: var(--first-color);
  font-size: var(--h3-font-size);
  margin-bottom: 0.25rem;
}

.deals__category {
  font-family: var(--second-font);
  font-size: var(--small-font-size);
}

.deals__title {
  max-width: 240px;
  font-size: var(--large-font-size);
  font-weight: var (--weight-400);
  line-height: 1.3;
}

.deals__price .new__price,
.deals__price .old__price {
  font-size: var(--large-font-size);
}

.deals__price .new__price {
  color: hsl(352, 100%, 60%);
}

.deals__countdown-text {
  margin-bottom: 0.25rem;
}

.countdown {
  display: flex;
  column-gap: 1.5rem;
}

.countdown__amount {
  position: relative;
}




.countdown__period {
  background-color: var(--first-color);
  color: var(--body-color);
  width: 60px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 0.25rem;
  font-size: var(--large-font-size);
  font-weight: var(--weight-600);
  margin-bottom: 0.5rem;
}

.unit {
  font-size: var(--small-font-size);
  text-align: center;
  display: block;
}



/*=============== NEW ARRIVALS ===============*/
.new__arrivals {
  
  overflow: hidden;
}

/*=============== SHOWCASE ===============*/
.showcase__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Divide o container em 3 colunas */
  gap: 2.5rem; /* Espaço entre as colunas */
}

.showcase__wrapper .section__title {
  font-size: var(--normal-font-size);
  border-bottom: 1px solid var(--border-color-alt);
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
  position: relative;
}

.showcase__wrapper .section__title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1.3px;
  width: 50px;
  height: 2px;
  background-color: var(--first-color);
}

.showcase__item {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Espaço entre a imagem e o texto */
  margin-bottom: 1.5rem; /* Espaço extra abaixo de cada item */
  padding: 1rem;
  background-color: var(--container-color); /* Fundo para destacar os itens */
  border-radius: 0.5rem;
}

.showcase__item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.showcase__img {
  width: 50px;
}

.showcase__content {
  width: calc(100% - 110px);
}

.showcase__title {
  font-size: var(--small-font-size);
  font-weight: var(--weight-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
}

/*=============== NEWSLETTER ===============*/
.newsletter {
  background-color: hsl(166, 23%, 74%);
}

.home__newsletter {
  margin-top: 0rem;
}

.newsletter__container {
  grid-template-columns: repeat(2, 3.5fr) 5fr;
  align-items: center;
  column-gap: 3rem;
}

.newsletter__title {
  column-gap: 1rem;
  font-size: var(--large-font-size);
}

.newsletter__icon {
  width: 40px;
}

.newsletter__description {
  color: var (--title-color);
  font-family: var(--second-font);
  font-size: var(--small-font-size);
  font-weight: var (--weight-600);
  text-align: center
}

.newsletter__form {
  display: flex;
}

.newsletter__input,
.newsletter__btn {
  font-size: var(--small-font-size);
}

.newsletter__input {
  background-color: var(--body-color);
  padding-inline: 1.25rem;
  width: 100%;
  height: 48px;
  border-radius: 0.25rem 0 0 0.25rem;
}

.newsletter__btn {
  background-color: var(--title-color);
  color: var(--body-color);
  padding-inline: 2rem;
  border-radius: 0 0.25rem 0.25rem 0;
  font-family: var(--second-font);
  font-weight: var (--weight-500);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s var(--transition);
}

.newsletter__btn:hover {
  background-color: var(--first-color);
}

/*=============== FOOTER ===============*/
.footer__container {
  grid-template-columns: 4.5fr repeat(2, 2fr) 3.5fr;
  padding-block: 2.5rem;
}

.footer__logo-img {
  width: 120px;
}

.footer__subtitle {
  color: hsl(0deg 0% 0%);
  font-size: var(--small-font-size);
  margin-block: 1.25rem 0.625rem;
}

.footer__description {
  margin-bottom: 0.25rem;
}

.footer__description span {
  font-weight: var(--weight-600);
}

.footer__social .footer__subtitle {
  margin-top: 1.875rem;
}

.footer__social-links {
  column-gap: 0.25rem;
}

.footer__social-icon {
  width: 20px;
  opacity: 0.7;
}

.footer__title {
  font-size: var(--large-font-size);
  margin-block: 1rem 1.25rem;
}

.footer__link {
  color: var(--title-color);
  font-size: var(--small-font-size);
  margin-bottom: 1rem;
  display: block;
  transition: all 0.3s var(--transition);
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 1.25rem;
  border-top: 1px solid var(--border-color-alt);
}

.copyright,
.designer {
  color: hsl(0deg 0% 0%);
  font-size: var(--small-font-size);
}

/*=============== BREADCRUMB ===============*/
/*=============== BREADCRUMB ===============*/
.breadcrumb {
  background-color: var(--container-color);
  padding-block: 1.5rem;
  font-size: var(--small-font-size);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.5rem;
}

.breadcrumb__link {
  color: var(--text-color); /* normal */
  font-size: var(--small-font-size);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb__link:hover {
  color: var(--first-color);
}

/* Ícone separador > */
.breadcrumb__list li span:not(:first-child) {
  color: var(--text-light-color);
  margin: 0 0.3rem;
}

/* Último item (produto atual) */
.breadcrumb__link.current {

  font-weight: bold;
  opacity: 1;
}


/*=============== SHOP ===============*/
.total__products {
  margin-bottom: 2.5rem;
}

.total__products span {
  color: var(--first-color);
  font-weight: var(--weight-600);
}

.pagination {
  display: flex;
  column-gap: 0.625rem;
  margin-top: 2.75rem;
}

.pagination__link {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 0.25rem;
  color: var(--text-color);
  font-size: var(--small-font-size);
  font-weight: var(--weight-700);
  transition: all 0.15s var(--transition);
}

.pagination__link.active,
.pagination__link:hover {
  background-color: var(--first-color);
  color: var(--body-color);
}

.pagination__link.icon {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

/*=============== DETAILS ===============*/
.details__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.details__img-container {
  overflow: hidden;
  border-radius: 15px;

  margin-bottom: 1rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.details__img {
  border-radius: 15px;
  max-width: 60%;
  display: block;
  margin: 0 auto;
  height: auto;
  margin-top: 0.4rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Nova linha opcional */
}








.details__small-images {
  
 
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.4rem; /* Ajuste o valor conforme necessário */
}

.details__small-img {
  border-radius: 15px;
  width: 100%;
  max-width: 50px;
  height: auto;
}

.details__title {
  font-size: var(--h2-font-size);
      padding: 1;
}

.details__brand {
  font-size: var(--small-font-size);
  margin-block: 1rem;
}

.details__brand span {
  color: var(--first-color);
}

.details__price {
  border-top: 1px solid var(--border-color-alt);
  border-bottom: 1px solid var(--border-color-alt);
  padding-block: 1rem;
  column-gap: 1rem;
}

.details__price .new__price {
  font-size: var(--h2-font-size);
}

.details__price .old__price {
  font-size: var(--normal-font-size);
  font-weight: var(--weight-400);
}

.short__description {
  margin-block: 0.2rem 2rem;
}

.list__item,
.meta__list {
  font-size: var(--small-font-size);
  margin-bottom: 0.75rem;
}

.details__color,
.details__size {
  column-gap: 0.75rem;
}

.details__color {
  margin-block: 2rem 1.5rem;
}

.details__size {
  margin-bottom: 2.5rem;
}

.details__color-title,
.details__size-title {
  font-size: var(--small-font-size);
  font-weight: var(--weight-600);
  text-align: center;
}

.color__list,
.size__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.color-box,
.size-box {
  flex: 0 1 auto;
  min-width: 20px;
  text-align: center;
  padding: 0.4rem;
  border: 2px solid var(--border-color-alt);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--box-background-color);
}

.size-box.size-active,
.color-box.color-box-active {
  background-color: #088179;
  color: #fff;
  border-color: #088179;
}

.color-quantity-display {
  display: flex;
  justify-content: center;
  margin-bottom: 0.3rem;
}

.quantity-message {
  padding: 0.5rem;
  border: 2px solid var(--first-color);
  border-radius: 0.25rem;
  background-color: var(--container-color);
  color: var(--text-color);
  font-weight: var(--weight-600);
  text-align: center;
  margin-top: 5px;
}

.color-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.25rem;
}

.color-box:hover,
.size-box:hover {
  border-color: var(--first-color);
  background-color: var(--first-color);
}

.color-box__circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-bottom: 5px;
  border: 1px solid var(--border-color-alt);
}

.color-box__name {
  font-size: var(--small-font-size);
  font-weight: var(--weight-600);
}

.details__action {
  display: flex;
  column-gap: 0.375rem;
  margin-bottom: 3.25rem;
}


.details__action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-color-alt);
  font-size: var(--small-font-size);
  width: 200px; /* Ajusta a largura do botão */
  margin: 5px auto; /* Centraliza o botão horizontalmente */
}

.details__quantity {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.quantity-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 120px; /* Ajuste conforme necessário */
  margin-right: 20px; /* Espaçamento entre quantidade e botão */
}

.quantity {
  max-width: 100%; 
  padding-block: 0.5rem;
  padding-inline: 2.5rem 1rem;
  border-radius: 0.25rem;
  font-size: var(--small-font-size);
  border: 1px solid #ddd;
  text-align: center;
}

.btn-quantity {
  position: absolute;
  width: 30px;
  height: 100%;
  background-color: transparent;
  color: black;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.btn-quantity#decrement {
  left: 0;
}

.btn-quantity#increment {
  right: 0;
}



.details__action-btn {
  color: var(none);
  line-height: 0px;
  padding-inline: 0.65rem;
}

.details__meta {
  border-top: 1px solid var(--border-color-alt);
  padding-top: 0.5rem;
}

/*=============== DETAILS INFO & REVIEWS ===============*/
.detail__tabs {
  display: flex;
  column-gap: 1.75rem;
  margin-bottom: 1rem;
}

.detail__tab {
  font-family: var(--second-font);
  font-size: var(--large-font-size);
  font-weight: var(--weight-600);
  cursor: pointer;
  margin-top: 2rem; /* Ajuste o valor conforme necessário */
}

.detail__tab.active-tab {
  color: var(--first-color);
 
}


.details__tab-content:not(.active-tab) {
  display: none;
}

/* Estilo refinado para a tabela de informações adicionais */
.info__table {
    width: 100%; /* Garante que a tabela use toda a largura disponível */
    border-collapse: collapse; /* Remove espaçamentos entre células */
    font-family: 'Poppins', sans-serif; /* Fonte moderna e elegante */
    font-size: 14px; /* Tamanho ideal para leitura */
}

.info__table tr {
    border-bottom: 1px solid #ddd; /* Linha discreta entre linhas */
}

.info__table tr:hover {
    background-color: #f9f9f9; /* Realce ao passar o mouse */
}

.info__table th, 
.info__table td {
    color: var(--text-color-light); /* Cor do texto */
    padding: 10px 15px; /* Espaçamento interno das células */
    text-align: left; /* Alinha o texto à esquerda */
    vertical-align: middle; /* Centraliza verticalmente o texto */
}

.info__table th {
    font-weight: 600; /* Destaque para o cabeçalho */
    color: #333; /* Cor mais forte para contraste */
    text-transform: uppercase; /* Letras maiúsculas para cabeçalhos */
}

.info__table td {
    font-weight: 400; /* Peso normal para os dados */
    color: #555; /* Cor intermediária para os valores */
}

.info__table td:first-child {
    font-weight: 500; /* Destaca a primeira coluna */
    color: #222; /* Cor mais escura para maior contraste */
}

/* Adiciona uma leve transição para hover */
.info__table td:hover {
    color: #000; /* Realça o texto ao passar o mouse */
    transition: color 0.3s ease-in-out; /* Suaviza a mudança */
}


.reviews__container {
  padding-bottom: 3rem;
  row-gap: 1.25rem;
}

.review__single {
  border-bottom: 1px solid var(--border-color-alt);
  padding-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  column-gap: 1.5rem;
}

.review__single:last-child {
  padding-bottom: 3rem;
}

.review__img {
  width: 70px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.review__title {
  font-size: var(--tiny-font-size);
}

.review__data {
  width: calc(100% - 94px);
}

.review__description {
  margin-bottom: 0.5rem;
}

.review__rating {
  color: hsl(42, 100%, 50%);
  margin-bottom: 0.25rem;
}

.review__rating,
.review__date {
  font-size: var(--small-font-size);
}

.review__form-title {
  font-size: var(--large-font-size);
  margin-bottom: 1rem;
}

.rate__product {
  margin-bottom: 2rem;
}

/*=============== CART ===============*/
.table__container {
  overflow-x: auto;
}

.table {
  table-layout: fixed;
  margin-bottom: 2rem;
}

.table tr {
  border-top: 1px solid var(--border-color-alt);
}

.table tr:last-child {
  border-bottom: 1px solid var(--border-color-alt);
}

.table tr th:nth-child(1),
.table tr td:nth-child(1) {
  width: 216px;
}

.table tr th:nth-child(2),
.table tr td:nth-child(2) {
  width: 400px;
}

.table tr th:nth-child(3),
.table tr td:nth-child(3) {
  width: 108px;
}

.table tr th:nth-child(4),
.table tr td:nth-child(4) {
  width: 220px;
}

.table tr th:nth-child(5),
.table tr td:nth-child(5) {
  width: 200px;
}

.table tr th:nth-child(6),
.table tr td:nth-child(6) {
  width: 152px;
}

.table__img {
  width: 50px;
}

.table tr th,
.table tr td {
  padding: 0.5rem;
  text-align: center;
}

.table__title,
.table__description,
.table__price,
.table__subtotal,
.table__trash,
.table__stock {
  font-size: var(--small-font-size);
  font-weight: bold;
}

.table__title,
.table__stock {
  color: var(--first-color);
}

.table__description {
  max-width: 100px;
  margin-inline: auto;
}

.table__trash {


  font-size: 16px;
  transition: color 0.3s;
  color: #c70000;
}

.cart__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.divider {
  position: relative;
  text-align: center;
  margin-block: 3rem;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 2px solid var(--border-color-alt);
}

.divider i {
  color: var(--text-color-light);
  background-color: var(--body-color);
  font-size: 1.25rem;
  padding-inline: 1.25rem;
  position: relative;
  z-index: 10;
}

.cart__group {
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
}

.cart__shipping .section__title,
.cart__coupon .section__title,
.cart__total .section__title {
  font-size: var(--large-font-size);
  margin-bottom: 0.5rem;
}

.cart__coupon {
  margin-top: 3rem;
}

.coupon__form .form__group {
  align-items: center;
}

.cart__total {
  border: 1px solid var(--border-color-alt);
  border-radius: 0.25rem;
  padding: 1.75rem;
}

.cart__total-table {
  margin-bottom: 1rem;
}

.cart__total-table tr td {
  border: 1px solid var(--border-color-alt);
  padding: 0.75rem 0.5rem;
  width: 50%;
}

.cart__total-title {
  font-size: var(--small-font-size);
}

.cart__total-price {
  color: var(--first-color);
  font-weight: var(--weight-700);
}

.cart__total .btn {
  display: inline-flex;
}

/*=============== CART OTHERS ===============*/

/*=============== WISHLIST ===============*/

/*=============== CHECKOUT ===============*/
.checkout__container {
  grid-template-columns: repeat(2, 1fr);
}

.checkout__group:nth-child(2) {
  border: 1px solid var(--border-color-alt);
  padding: 2rem;
  border-radius: 0.5rem;
}

.checkout__group .section__title {
  font-size: var(--large-font-size);
}

.checkout__title {
    font-size: 1.0rem; /* Mantém o tamanho do texto */
    font-weight: bold; /* Mantém o peso do texto */
    color: #2c3e50; /* Mantém a cor do texto */
    margin-top: 15px; /* Adiciona espaço acima do título */
    margin-bottom: 20px; /* Mantém espaço abaixo */
    text-align: center; /* Centraliza o texto */
    letter-spacing: 1px; /* Adiciona espaçamento entre as letras */
    text-transform: uppercase; /* Mantém o texto em letras maiúsculas */
    border-bottom: 2px solid #d1d1d1; /* Mantém a linha decorativa abaixo */
    padding-bottom: 10px; /* Mantém o espaço entre o texto e a linha */
}



.order__table tr th,
.order__table tr td {
  border: 1px solid var(--border-color-alt);
  padding: 0.5rem;
  text-align: center;
}

.order__table tr th {
  color: var(--title-color);
  font-size: var(--small-font-size);
}

.order__img {
  width: 50px;
}

.table__quantity,
.order__subtitle {
  font-size: var(--small-font-size);
}

.order__grand-total {
  color: var(--first-color);
  font-size: var(--large-font-size);
  font-weight: var(--weight-700);
}

.payment__methods {
  margin-block: 2.5rem 2.75rem;
}

.payment__title {
  margin-bottom: 1.0rem;
}

.payment__option {
  margin-bottom: 1rem;
}

.payment__input {
  accent-color: var(--first-color);
}

.payment__label {
  font-size: var(--small-font-size);
}

/*=============== COMPARE ===============*/
.compare__table tr th,
.compare__table tr td {
  padding: 0.5rem;
  border: 1px solid var(--border-color-alt);
}

.compare__table tr th {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.compare__table tr td {
  text-align: center;
}

.comapre__colors {
  justify-content: center;
}

.table__weight,
.table__dimension {
  font-size: var(--small-font-size);
}

/*=============== LOGIN & REGISTER ===============*/
.login-register__container {
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
}

.login,
.register {
  border: 1px solid var(--border-color-alt);
  padding: 2rem;
  border-radius: 0.5rem;
}

/*=============== ACCOUNTS ===============*/
.accounts__container {
  grid-template-columns: 4fr 8fr;
}

.account__tabs {
  border: 1px solid var(--border-color-alt);
  border-radius: 0.25rem;
}

.account__tab {
  padding: 1rem 2rem;
  color: var(--title-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  cursor: pointer;
}

.account__tab.active-tab {
  background-color: var(--first-color);
  color: var(--body-color);
}

.account__tab:not(:last-child) {
  border-bottom: 1px solid var(--border-color-alt);
}

.tab__content:not(.active-tab) {
  display: none;
}

.tab__content {
  border: 1px solid var(--border-color-alt);
}

.tab__header {
  background-color: var(--container-color);
  border-bottom: 1px solid var(--border-color-alt);
  padding: 1rem;
  font-size: var(--small-font-size);
}

.tab__body {
  padding: 1rem;
}

.placed__order-table tr th {
  color: var(--title-color);
  text-align: left;
}

.placed__order-table tr th,
.placed__order-table tr td {
  border: 1px solid var(--border-color-alt);
  padding: 0.5rem;
  font-size: var(--small-font-size);
}

.view__order,
.edit {
  color: var(--first-color);
}

.address {
  font-style: normal;
  font-size: var(--small-font-size);
  line-height: 1.5rem;
}

.city {
  margin-bottom: 0.25rem;
}

.edit {
  font-size: var(--small-font-size);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }

  .products__container,
  .showcase__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .accounts__container {
    grid-template-columns: 3fr 9fr;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .header__top {
    display: none;
  }

  .nav {
    height: calc(var(--header-height) + 2.7rem);
  }

  .nav__logo-img {
    width: 116px;
  }

  .nav__menu {
    position: fixed;
    right: -100%;
    top: 0;
    max-width: 400px;
    width: 100%;
    height: 100%;
    padding: 1.25rem 2rem;
    background-color: var(--body-color);
    z-index: 100;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2rem;
    box-shadow: 0 0 15px hsla(0, 0%, 0%, 0.1);
    transition: all 0.25s var(--transition);
  }

  .show-menu {
    right: 0;
  }

  .nav__list {
    order: 1;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.5rem;
  }

  .nav__link {
    font-size: var(--large-font-size);
  }

  .header__search .form__input {
    border-color: var(--first-color);
  }

  .nav__menu-top,
  .nav__toggle {
    display: flex;
  }

  .nav__menu-top {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .nav__menu-logo img {
    width: 100px;
  }

  .nav__close {
    font-size: var(--h2-font-size);
    line-height: 1rem;
  }

  .header__action-btn img {
    width: 21px;
  }

  .home__container {
    grid-template-columns: 5.5fr 6.5fr;
  }

  .countdown {
    column-gap: 1rem;
  }

  .countdown__period {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }

  .countdown__amount::after {
    right: -30%;
    top: 14%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: -28px;
    width: 26px;
    height: 26px;
  }

  .swiper-button-prev {
    right: 36px;
  }

  .account__tab {
    padding: 0.75rem 1rem;
  }

  .checkout__group:nth-child(2) {
    padding: 1.5rem;
  }

  .details__brand {
    margin-block: 0.1rem;
  }

  .details__price {
    padding-block: 0.4rem;
  }

  .short__description {
    margin-bottom: 1rem;
  }

  .details__color {
    margin-block: 0rem 0rem;
  }

  .details__size {
    margin-bottom: 0.5rem;
  }

 




  .size__link {
    padding: 0.375rem 0.625rem;
  }

  .details__action {
    margin-bottom: 0.5rem;
    justify-content: center; /* Centraliza os itens horizontalmente */
  }
  
}

/* For medium devices */
@media screen and (max-width: 992px) {
  .container {
    max-width: 740px;
  }

  .home__container,
  .deals__container,
  .checkout__container,
  .newsletter__container,
  .accounts__container,
  .cart__group {
    grid-template-columns: 1fr;
  }

  .cart__group {
    row-gap: 2.75rem;
  }

  .home__img {
    justify-self: center;
  }

  .btn {
    height: 45px;
    line-height: 45px;
  }

  .btn--md {
    height: 42px;
    line-height: 39px;
  }

  .btn--sm {
    height: 38px;
    line-height: 30px;
  }

  .newsletter__description {
    display: none;
  }

  .products__container,
  .showcase__container,
  .footer__container,
  .details__container {
    grid-template-columns: repeat(2, 1fr);
    
  }

  .login,
  .register {
    padding: 1.25rem;
  }

  .table tr th:nth-child(1),
  .table tr td:nth-child(1) {
    width: 140px;
  }

  .table tr th:nth-child(2),
  .table tr td:nth-child(2) {
    width: 160px;
  }

  .table tr th:nth-child(3),
  .table tr td:nth-child(3) {
    width: none;
  }

  .table tr th:nth-child(4),
  .table tr td:nth-child(4) {
    width: 100px;
  }

  .table tr th:nth-child(5),
  .table tr td:nth-child(5) {
    width: 100px;
  }

  .table tr th:nth-child(6),
  .table tr td:nth-child(6) {
    width: 118px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }

 
  .showcase__container,
  .footer__container,
  .login-register__container,
  .details__container {
    grid-template-columns: 100%;
  }

  .tab__header,
  .tab__body {
    padding: 0.75rem;
  }

  
}

/* For small devices */
@media screen and (max-width: 576px) {
  .category__item {
    padding-bottom: 1rem;
  }

  .category__img {
    margin-bottom: 1rem;
  }

  /* Estiliza a imagem como miniatura */
.deals__item img.miniatura,
.checkout__group:nth-child(2) img.miniatura {
    padding: 0.0rem;
    width: 150px; /* Define a largura da miniatura */
    height: auto; /* Mantém a proporção da imagem */
    border-radius: 20px; /* Arredonda as bordas da imagem */
    object-fit: cover; /* Ajusta a imagem para cobrir completamente o elemento */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adiciona uma leve sombra */
    position: relative; /* Permite o uso de top, left, right, bottom para posicionamento */
    margin: 10px; /* Espaçamento ao redor da miniatura */
}

/* Exemplo de como posicionar a miniatura */
.deals__item img.miniatura {
    float: left; /* Faz a miniatura flutuar à esquerda dentro do elemento */
    margin-right: 15px; /* Espaçamento à direita da imagem */
}

/* Outra opção de posicionamento */
.checkout__group:nth-child(2) img.miniatura {
    position: absolute; /* Posicionamento absoluto dentro do elemento pai posicionado */
    top: 10px; /* Distância do topo do elemento pai */
    left: 10px; /* Distância da esquerda do elemento pai */
}


  .pagination {
    column-gap: 0.5rem;
    margin-top: 2.5rem;
  }

  .pagination__link {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .placed__order-table th,
  .order__table tr th {
    display: none;
  }

  .placed__order-table tr td,
  .order__table tr td,
  .info__table tr th,
  .info__table tr td {
   
  }

  .form__group {
    grid-template-columns: 1fr;
  }

  .cart__total {
    padding: 1.25rem;
  }

  .payment__methods {
    margin-block: 0.25rem 0.5rem;
  }

  .detail__tabs {
    column-gap: 1.25rem;
    margin-bottom: 1rem;
  }

  .review__single {
    column-gap: 1rem;
  }

  .footer__title {
    margin-top: 0.25rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 350px) {
  .action__btn {
    width: 36px;
    height: 36px;
    line-height: 38px;
  }

  .cart__btn {
    bottom: 1.4rem;
    right: 1.25rem;
  }

  .showcase__item {
    column-gap: 1rem;
  }

  .showcase__img {
    width: 70px;
  }

  .showcase__content {
    width: calc(100% - 86px);
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .compare__table tr th,
  .cart__total-table tr td {
    display: block;
    width: 100%;
 
}
.miniatura {
  width: 80px; /* Ajuste este valor conforme necessário */
  height: auto; /* Mantém a proporção da imagem */
  border-radius: 5px; /* Opcional: arredonda os cantos da imagem */
  object-fit: cover; /* Ajusta a imagem para cobrir completamente o elemento */
}
.div_balance{
  width: 400px;
  margin: 0 auto;
  background-color: #140054;
  color: #fff;
  font-family: arial;
  padding: 50px;
}

.div_balance p{
  display: grid;
}
.div_balance p a{
  text-decoration: none;
  background-color: #01d2e5;
  padding: 10px;
  font-size: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.div_balance input{
  width: 97%;
  height: 30px;
  border-radius: 10px;
  border: 2px solid #01d2e5;
  font-size: 20px;
  padding-left: 10px;
}

.card-page{
  width: 500px;
  margin: 0 auto;
}

}

/*=============================
  GLOBAL SWATCH STYLES
=============================*/
:root {
  /* Variáveis para fácil customização */
  --swatch-size: 36px;
  --swatch-gap: 8px;
  --swatch-border: 2px;
  --swatch-border-color: #ddd;
  --swatch-border-color-hover: #333;
  --swatch-shadow: 0 2px 8px rgba(0,0,0,0.15);
  --swatch-transition: 0.25s ease-out;
  --swatch-selected-color: #0078D4;
  /* RGB de --swatch-selected-color para sombra selecionada */
  --swatch-selected-rgb: 0,120,212;
}

/* Container em grid, alinhando tudo bonitinho */
.details__color .color__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--swatch-size), 1fr));
  gap: var(--swatch-gap);
  justify-items: center;
  padding: 0;
  list-style: none;
}

/* Aparição suave */
@keyframes swatch-appear {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

.details__color .color__link {
  width: var(--swatch-size);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: var(--swatch-border) solid var(--swatch-border-color);
  box-shadow: var(--swatch-shadow);
  background-size: cover !important;
  background-position: center !important;
  cursor: pointer;
  position: relative;
  transform: scale(0.95);
  animation: swatch-appear 0.4s var(--swatch-transition) forwards;
  transition:
    transform var(--swatch-transition),
    border-color var(--swatch-transition),
    box-shadow var(--swatch-transition);
}

/* Hover com destaque */
.details__color .color__link:hover {
  border-color: var(--swatch-border-color-hover);
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Foco acessível */
.details__color .color__link:focus {
  outline: none;
  border-color: var(--swatch-selected-color);
  box-shadow: 0 0 0 4px rgba(var(--swatch-selected-rgb), 0.3);
}

/* Estado “selecionado” */
.details__color .color-box-active .color__link {
  border-color: var(--swatch-selected-color);
  box-shadow: 0 0 0 3px rgba(var(--swatch-selected-rgb), 0.4);
}

/* Checkmark no centro do swatch selecionado */
.details__color .color-box-active .color__link::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.6em;
  text-shadow: 0 0 2px rgba(0,0,0,0.5);
}


