/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #D10024
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

:root {
  --font-color-dark: #333;
  --heading-color: #2B2D42;
  --link-color: #fff;
  --link-hover-color: #057d9b;
  --button-bg-color: #03566b;
  --button-text-color: #FFF;
  --border-color-light: #E4E7ED;
  --input-bg-color: #FFF;
  --radio-checkbox-bg-color: #FFF;
  --radio-checkbox-checked-color: #03566b;
  --section-padding: 30px;
  --nav-text-color: #8D99AE;
  --nav-hover-color: #03566b;
  --breadcrumb-bg-color: #FBFBFC;
  --breadcrumb-border-color: #E4E7ED;
  --breadcrumb-text-color: #8D99AE;
  --header-bg-color: #057d9b;
  --logo-bg-color: #057d9b;
  --link-hover-color: #03566b;
  --white-color: #FFF;
  --cart-bg-color: #03566b;
  --cart-dropdown-bg-color: #FFF;
  --cart-border-color: #E4E7ED;
  --cart-product-price-color: #2B2D42;
  --navbar-bg-color: #FFF;
  --navbar-border-bottom-color: #E4E7ED;
  --navbar-border-top-color: #03566b;
  --nav-link-color: #000;
  --nav-link-hover-color: #03566b;
  --responsive-nav-bg-color: #057d9b;
  --shop-overlay-color: #03566b;
  --shop-img-bg-color: #E4E7ED;
  --white-color: #FFF;
}


/*=========================================================
	01 -> GENERAL
===========================================================*/
/* Container principal */
.about-us-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* Sessão Sobre Nós */
.about-us {
  background: linear-gradient(135deg, #005b99, #00a3cc);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Cabeçalho */
.about-us-header {
  text-align: center;
  margin-bottom: 20px;
}

.about-us h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.about-us-subtitle {
  font-size: 1.2rem;
  font-style: italic;
  color: #e0f7fa;
}

/* Conteúdo */
.about-us-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f8ff;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
  .about-us-container {
      padding: 10px;
  }
  .about-us {
      padding: 20px;
  }
  .about-us h1 {
      font-size: 2rem;
  }
  .about-us-content p {
      font-size: 1rem;
  }
}


/*----------------------------*\
	Typography
\*----------------------------*/
/* Remove as setinhas no campo de número */
input[type="number"].no-spinner::-webkit-inner-spin-button,
input[type="number"].no-spinner::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"].no-spinner {
    -moz-appearance: textfield;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--font-color-dark);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: var(--link-color);
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: var(--link-hover-color);
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*----------------------------*\
  Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--button-bg-color);
  border: none;
  border-radius: 40px;
  color: var(--button-text-color);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: var(--button-text-color);
}

/*----------------------------*\
  Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid var(--border-color-light);
  background-color: var(--input-bg-color);
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

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

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid var(--border-color-light);
  background-color: var(--input-bg-color);
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color-light);
  background-color: var(--input-bg-color);
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
  background-color: var(--border-color-light);
  color: var(--link-hover-color);
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: var(--input-bg-color);
  border: 1px solid var(--border-color-light);
  height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label, .input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--border-color-light);
  background: var(--radio-checkbox-bg-color);
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: var(--radio-checkbox-bg-color);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: var(--radio-checkbox-bg-color);
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
  background-color: var(--radio-checkbox-checked-color);
  border-color: var(--radio-checkbox-checked-color);
}

.input-radio input[type="radio"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption, .input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption, .input-checkbox input[type="checkbox"]:checked~.caption {
  max-height: 800px;
}


/*----------------------------*\
    Section
\*----------------------------*/

section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--section-padding);
}

.section-title .title {
  text-transform: uppercase;
  margin: 0;
}
.section-title .section-nav {
  display: none; /* Se você não precisa dos navs nesta seção, pode esconder */
}

.section-title .btn {
  margin-left: 20px; /* Espaço entre o título e o botão */
}

/* Estilos adicionais para navegação da seção, se necessário */
.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: var(--nav-text-color);
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--nav-hover-color);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: var(--nav-hover-color);
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
  width: 100%;
}


/*----------------------------*\
  Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: var(--section-padding) 0px;
  background: var(--breadcrumb-bg-color);
  border-bottom: 1px solid var(--breadcrumb-border-color);
  margin-bottom: var(--section-padding);
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: var(--breadcrumb-text-color);
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: var(--breadcrumb-text-color);
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: var(--nav-hover-color);
}


/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/
.logout-icon {
  margin-left: auto; /* Move o botão de logout o mais à direita possível */
}

.logout-icon a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.logout-icon i {
  font-size: 1.2em;
  margin-bottom: 0;
}

.logout-icon a:hover {
  color: red;
}


#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--header-bg-color);
}

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

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: var(--white-color);
}

.header-links li a:hover {
  color: var(--link-hover-color);
}

.header-links li i {
  color: var(--link-hover-color);
  margin-right: 5px;
}

/*----------------------------*\
  Logo
\*----------------------------*/

#header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--logo-bg-color);
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
}

/*----------------------------*\
  Search
\*----------------------------*/

.header-search {
  padding: 15px 0px;
}

.header-search form {
  display: flex;
  align-items: center;
  position: relative;
}

.header-search form .input-select {
  width: 200px; /* Reduz o tamanho do select */
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.header-search form .input {
  width: calc(100% - 220px); /* Ajuste para acomodar o select menor e o botão */
  margin-right: -4px;
}

.header-search form .search-btn {
  height: 40px;
  width: 100px;
  background: var(--link-hover-color);
  color: var(--white-color);
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

/*----------------------------*\
  Cart, Wishlist, and Profile Icon
\*----------------------------*/

.cart-empty {
  text-align: center;
  padding: 50px 20px;
  border: 2px dashed #ddd;
  background-color: #f9f9f9;
  border-radius: 10px;
  color: #555;
}

.cart-empty i {
  font-size: 50px;
  color: #999;
  margin-bottom: 20px;
}

.cart-empty p {
  font-size: 24px;
  margin: 0;
  font-weight: bold;
  color: #333;
}

.shop-now-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.shop-now-btn:hover {
  background-color: #0056b3;
}


.cart-item {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.cart-item-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-item-details {
  flex: 1;
  margin-left: 20px;
}

.cart-item-details h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.cart-item-details p {
  margin: 5px 0;
}

.quantity-controls {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.btn-quantity {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.btn-quantity:hover {
  background-color: #0056b3;
}

.quantity {
  margin: 0 10px;
  font-size: 16px;
}

.btn-remove {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

.btn-remove:hover {
  background-color: #c82333;
}


.header-ctn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 0px;
  position: relative;
  width: 100%;
}

.header-ctn > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: 15px;
}

.header-ctn > div:first-child {
  margin-left: 0;
}

.header-ctn > div > a {
  display: block;
  position: relative;
  text-align: center;
  color: var(--white-color);
  text-decoration: none;
}

.header-ctn > div > a:hover,
.header-ctn > div > a:focus,
.header-ctn > div > a:active {
  text-decoration: none;
}

/* Wishlist Icon (Coração vermelho ao passar o mouse) */
.header-ctn > div > a i.fa-heart {
  color: var(--white-color); /* Cor padrão do coração */
  font-size: 28px; /* Tamanho do ícone aumentado */
}

.header-ctn > div > a:hover i.fa-heart {
  color: #d10024; /* Coração vermelho */
}

/* Cart Icon (Carrinho verde com transparência ao passar o mouse) */
.header-ctn > div > a i.fa-cart-shopping {
  color: var(--white-color); /* Cor padrão do carrinho */
  font-size: 28px; /* Tamanho do ícone aumentado */
}

.header-ctn > div > a:hover i.fa-cart-shopping {
  color: #808080; /* Carrinho verde */
}

.header-ctn > div > a > i {
  display: block;
  font-size: 24px; /* Aumenta o tamanho do ícone */
}

.header-ctn > div > a > span {
  font-size: 14px; /* Tamanho do texto um pouco maior */
  margin-top: 5px; /* Espaço entre ícone e texto */
}

.header-ctn > div > a > .qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: var(--white-color);
  background-color: var(--cart-bg-color);
}

/*----------------------------*\
  Profile Icon (Stay on Right Side)
\*----------------------------*/

.header-ctn .profile-icon {
  margin-left: auto; /* Push the profile icon to the far right */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header-ctn .profile-icon a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--white-color);
}

.header-ctn .profile-icon .icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header-ctn .profile-icon .icon-circle i {
  font-size: 24px; /* Aumenta o tamanho do ícone */
  color: #888;
  transition: color 0.3s ease; /* Adiciona transição para a cor */
}

.header-ctn .profile-icon:hover .icon-circle {
  background-color: #808080;
}

.header-ctn .profile-icon:hover .icon-circle i {
  color: #fff; /* Altera a cor do ícone ao passar o mouse */
}

.header-ctn .profile-icon span {
  font-size: 14px; /* Tamanho do texto um pouco maior */
  margin-top: 5px; /* Espaço entre ícone e texto */
  color: inherit;
}



/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
  background: var(--navbar-bg-color);
  border-bottom: 2px solid var(--navbar-border-bottom-color);
  border-top: 3px solid var(--navbar-border-top-color);
}

/*----------------------------*\ 
  Main nav 
\*----------------------------*/

.navbar-nav .nav-item {
  margin-left: 30px; /* Ajusta o espaçamento entre itens de navegação */
}

.navbar-nav .nav-link {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0;
  color: var(--nav-link-color); /* Cor padrão dos links */
  text-decoration: none; /* Remove sublinhado dos links */
  display: block; /* Garante que o padding afete toda a área clicável */
  position: relative; /* Para posicionar o pseudo-elemento */
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link:focus, 
.navbar-nav .nav-item.active .nav-link {
  color: var(--nav-link-hover-color);
  background-color: transparent;
}

/* Estilo do sublinhado */
.navbar-nav .nav-link:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--nav-link-hover-color);
  transition: width 0.2s ease; /* Transição suave */
  position: absolute; /* Posiciona o sublinhado */
  bottom: -4px; /* Coloca o sublinhado logo abaixo do link */
  left: 0; /* Começa na esquerda */
}

.navbar-nav .nav-link:hover:after, 
.navbar-nav .nav-link:focus:after, 
.navbar-nav .nav-item.active .nav-link:after {
  width: 100%; /* O sublinhado vai até a largura total do link */
}

.navbar-toggler {
  border: none;
}




/*----------------------------*\
  Responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .navbar-toggler {
    display: inline-block;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: var(--responsive-nav-bg-color);
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.show {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .navbar-nav {
    margin: 0;
    float: none;
  }
  .navbar-nav .nav-item {
    display: block;
    float: none;
  }
  .navbar-nav .nav-item + .nav-item {
    margin-left: 0;
  }
  .navbar-nav .nav-link {
    padding: 15px;
    color: var(--white-color);
  }
}

/*=========================================================
  04 -> CATEGORY SHOP
===========================================================*/

.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: var(--shop-overlay-color);
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: var(--shop-overlay-color);
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
  position: relative;
  background-color: var(--shop-img-bg-color);
  z-index: -1;
}

.shop .shop-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h3 {
  color: var(--white-color);
}

.shop .shop-body .cta-btn {
  color: var(--white-color);
  text-transform: uppercase;
}



/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

/* Estilos gerais para o produto */
.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #D10024;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #D10024;
}

/* Novos estilos para .compact-product */
.compact-product {
  width: 200px;
  height: px;
  border: 1px solid #e4e7ed;
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 0px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.compact-product:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.compact-product .product-img {
  position: relative;
  text-align: center;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.compact-product .product-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.compact-product .product-label {
  position: absolute;
  top: 10px;
  left: 10px;
}

.compact-product .sale {
  background-color: rgba(32, 161, 64, 0.9);
  color: #fff;
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 12px;
}

.compact-product .product-body {
  padding: 10px 0;
  text-align: center;
}

.compact-product .product-category {
  color: #8d99ae;
  font-size: 12px;
  margin-bottom: 3px;
}

.compact-product .product-name a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  display: block;
  height: 35px;
  overflow: hidden;
}

.compact-product .product-name {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  display: block;
  height: 35px;
  overflow: hidden;
}

.compact-product .product-name a:hover {
  color: #057d9b;
}

.compact-product .product-price {
  font-size: 16px;
  color: #057d9b;
  margin-bottom: 5px;
}

.compact-product .product-old-price {
  color: #d10024;
  text-decoration: line-through;
  font-size: 12px;
}

.compact-product .product-btns {
  text-align: center;
  margin-top: 10px;
}

.compact-product .product-btns button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 8px;
  font-size: 12px;
}

.compact-product .add-to-cart {
  text-align: center;
  margin-top: 10px;
}

.compact-product .add-to-cart-btn {
  background-color: rgba(32, 161, 64, 0.9);
  color: #fff;
  border: none;
  padding: 8px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.2s, color 0.2s;
}

.compact-product .add-to-cart-btn:hover {
  background-color: rgba(32, 161, 64, 0.9);
}

/* Botão de adicionar aos favoritos no canto superior direito */
/* Botão de adicionar aos favoritos no canto superior direito */
.compact-product .add-to-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: 2px solid #888;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 1; /* Certifique-se de que o botão esteja acima de outros elementos */
}

.compact-product .add-to-wishlist i {
  font-size: 18px;
}

/* Efeito ao passar o mouse */
.compact-product .add-to-wishlist:hover {
  background-color: #d10024;
  color: #fff;
  border-color: #d10024;
}

/* Tooltip escondido inicialmente */
.compact-product .add-to-wishlist .tooltipp {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 2; /* Certifique-se de que o tooltip esteja acima de outros elementos */
  top: 50%; /* Ajuste para garantir que o tooltip esteja acima do botão */
  right: 50%; /* Ajuste para centralizar o tooltip em relação ao botão */
  transform: translate(50%, -120%); /* Ajuste para garantir que o tooltip não seja cortado */
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 12px;
  white-space: nowrap;
}

/* Exibir tooltip ao passar o mouse */
.compact-product .add-to-wishlist:hover .tooltipp {
  visibility: visible;
  opacity: 1;
}

.compact-product .add-to-wishlist .tooltipp::after {
  content: "";
  position: absolute;
  top: 100%; /* Posição da seta do tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent; /* Seta do tooltip */
}
  

.margin-top-20 {
  margin-top: 20px; /* ajuste conforme necessário */
}

/*----------------------------*\
    Widget product
\*----------------------------*/

.product-widget {
  position: relative;
}

.product-widget+.product-widget {
  margin: 30px 0px;
}

.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}

.product-widget .product-img>img {
  width: 100%;
}

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8D99AE;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
}

.product-widget .product-body .product-name>a {
  font-weight: 700;
}

.product-widget .product-body .product-name>a:hover, .product-widget .product-body .product-name>a:focus {
  color: #D10024;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: #D10024;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #1e1f29;
  border: none;
  color: #FFF;
}

/*----------------------------*\
    Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}


/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
  margin-top: 30px;
}

.aside>.aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
  color: #8D99AE;
}

/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #D10024;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #D10024;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before, .noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #E4E7ED;
  color: #D10024;
}

.store-grid li.active {
  background-color: #D10024;
  border-color: #D10024;
  color: #FFF;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}

.store-pagination li:hover {
  background-color: #E4E7ED;
  color: #D10024;
}

.store-pagination li.active {
  background-color: #D10024;
  border-color: #D10024;
  color: #FFF;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/
.content-box {
  transition: transform 0.2s ease;
}

.content-box:hover {
  transform: translateY(-5px);
}

.product-image img {
  max-width: 150px;
  max-height: 150px;
  object-fit: cover;
}

.product-name {
  font-size: 1.25rem;
}

.product-price {
  font-size: 1.2rem;
}

.quantity-controls input {
  background-color: #f8f9fa;
  border: none;
  font-size: 1rem;
}

.btn-outline-secondary {
  border-width: 2px;
}

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #FFF;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
  border-color: #20a140;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 80%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: uppercase;
  font-size: 23px;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating>i {
  color: #000;
}

.product-details .product-rating>i.fa-star {
  color: #3ea8ff;
}

.product-details .review-link {
  font-size: 12px;
  color: black;
}

.product-details .product-price {
  display: inline-block;
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: black;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #928989;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: rgb(23, 197, 60);
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #3ea8ff;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn > i {
  position: absolute;
  left: 10px; /* Ajuste conforme necessário */
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px; /* Ajuste conforme necessário */
  color: #3ea8ff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #3ea8ff;
  border-color: #3ea8ff;
  padding-left: 50px; /* Adiciona espaço para o ícone */
}

.product-details .add-to-cart .add-to-cart-btn:hover > i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}


.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #E4E7ED;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #FFF;
  padding: 0px 15px;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8D99AE;
}

#product-tab .tab-nav li.active a {
  color: #D10024;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: rgba(32, 161, 64, 0.9);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars, .rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars>i, .rating .rating-stars>i {
  color: #E4E7ED;
}

.rating-avg .rating-stars>i.fa-star, .rating .rating-stars>i.fa-star {
  color: #D10024;
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #E4E7ED;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress>div {
  background-color: #D10024;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
}

.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}

.reviews .review-heading .date {
  color: #8D99AE;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
  color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
  color: #D10024;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #E4E7ED;
  color: #D10024;
}

.reviews-pagination li.active {
  background-color: #D10024;
  border-color: #D10024;
  color: #FFF;
  cursor: default;
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars>label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars>label:before {
  content: "\f006";
  font-family: FontAwesome;
  color: #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before, .review-form .input-rating .stars>label:hover~label:before {
  color: #D10024;
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: #D10024;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/
.checkout-summary {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.total {
  font-weight: bold;
}

.continue-shopping {
  text-align: right;
  margin-top: 20px;
}

.btn-danger {
  margin-top: 20px; /* Ajusta o espaço entre o botão de esvaziar e o botão de continuar a compra */
}
/*----------------------------------------------------------------*/

.payment-methods {
  background-color: #f8f9fa; /* Fundo claro */
  border-radius: 8px; /* Bordas arredondadas */
  padding: 20px; /* Espaçamento interno */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra leve */
}

.payment-method {
  padding: 15px;
  border: 1px solid #dee2e6; /* Borda leve */
  border-radius: 8px; /* Bordas arredondadas */
  transition: transform 0.2s; /* Efeito de hover */
}

.payment-method:hover {
  transform: scale(1.02); /* Leve aumento no hover */
}

.payment-title {
  color: #007bff; /* Cor do título */
  margin-bottom: 10px; /* Espaçamento inferior */
}

.payment-form input {
  width: 100%; /* Largura total */
  padding: 10px; /* Espaçamento interno */
  margin-bottom: 10px; /* Espaçamento inferior */
  border: 1px solid #ced4da; /* Borda leve */
  border-radius: 5px; /* Bordas arredondadas */
}

.payment-form button {
  width: 100%; /* Largura total */
  padding: 10px; /* Espaçamento interno */
}

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 24px;
  color: #D10024;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
  background: #15161D;
  color: #B9BABC;
  padding: 40px 0;
}

.footer-title {
  color: #FFF;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #B9BABC;
  font-size: 14px;
}

.footer-links li i {
  margin-right: 10px;
  color: #057d9b;
}

.footer-links li a:hover {
  color: #057d9b;
}

.footer-message {
  margin-top: 20px;
  color: #FFF;
  font-size: 14px;
  font-style: italic;
}

.container-fluid {
  padding: 0 50px;
}

/* Ajustes para os produtos no slider */
.products-slick {
  display: flex;
  justify-content: space-between;
}

.products-slick .product {
  flex: 0 0 auto;
  width: 25%; /* Exibe 4 produtos por vez */
  margin: 0 10px;
}

@media (max-width: 991px) {
  .products-slick .product {
      width: 50%; /* Exibe 2 produtos por vez em telas médias */
  }
}

@media (max-width: 480px) {
  .products-slick .product {
      width: 100%; /* Exibe 1 produto por vez em telas pequenas */
  }
}

/*=========================================================
  12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
  Arrows
\*----------------------------*/

.slick-prev, .slick-next {
  width: 60px;  /* Aumentar tamanho das setas */
  height: 60px;
  border: 2px solid #E4E7ED;  /* Aumentar a espessura */
  background-color: #FFF;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: #a1a1a1;
  border-color: #808080;
}

.slick-prev:before, .slick-next:before {
  font-family: FontAwesome;
  font-size: 24px;  /* Aumentar o ícone */
  color: #2B2D42;
}

.slick-prev:before {
  content: "\f104";  /* Ícone de voltar */
}

.slick-next:before {
  content: "\f105";  /* Ícone de avançar */
}

.slick-prev {
  left: -60px;  /* Colocar a seta de voltar no início */
}

.slick-next {
  right: -60px;  /* Colocar a seta de avançar no final */
}

/*----------------------------*\
  Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
width: 10px;
height: 10px;
}

.slick-dots li button:before {
content: "";
opacity: 1;
background: #E4E7ED;
border-radius: 50%;
}

.slick-dots li.slick-active button:before {
background-color: #D10024;
}

.custom-dots .slick-dots {
position: static;
margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-logo {
    float: none;
    text-align: center;
  }
  .header-logo .logo {
    display: inline-block;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  [class*='col-xs'] {
    width: 100%;
  }
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}







