@charset "utf-8";
/* CSS Document */

/******************************

COLOR PALETTE




[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Home
	3.1 Currency
	3.2 Language
	3.3 Account
	3.4 Main Navigation
	3.5 Hamburger Menu
	3.6 Logo
	3.7 Main Slider
4. Banner
5. New Arrivals
	5.1 New Arrivals Sorting
	5.2 New Arrivals Products Grid
6. Deal of the week
7. Best Sellers
	7.1 Slider Nav
8. Benefit
9. Blogs
10. Newsletter
11. Footer


******************************/

/***********
1. Fonts
***********/

@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,900");

/*********************************
2. Body and some general stuff
*********************************/
:root {
  --primary: #1e1e27;
  --secondary: #EBC100;
  --tertiary: #ffffff;

  --quarter: #fde0db;

  --accept:#51a042;
  --gray: #989898;
  --cancel: #F44336;

  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(40, 100%, 50%);
  --second-color: hsl(40, 100%, 50%);
  --third-color: hsl(219, 99%, 30%);

  --first-gradient: linear-gradient(90deg,
                  hsl(219, 85%, 22%),
                  hsl(219, 95%, 30%));
  --title-color: hsl(255, 12%, 12%);
  --text-color: hsl(225, 12%, 24%);
  --text-color-light: hsl(255, 4%, 70%);
  --body-color: hsl(220, 13%, 95%);
  --container-color: hsl(220, 13%, 95%);
  --white-color: hsl(220, 13%, 95%);
  --black-color: #000A30;
  --dark-color:hsl(0, 0%, 0%);
  --gray-border: hsl(260, 6%, 79%);
  --black-border: hsl(255, 10%, 20%);
  --bs-btn-hover-bg:hsl(0, 83%, 61%);
  --bs-btn-hover-color:hsl(0, 0%, 0%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
html {
  min-height: 100%;
  position: relative;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  background: var(--tertiary);
  color: var(--primary);
}
div {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
ul {
  list-style: none;
  margin-bottom: 0px;
}
p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--gray);
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
p a {
  display: inline;
  position: relative;
  color: inherit;
  border-bottom: solid 2px var(--quarter);
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
a,
a:hover,
a:visited,
a:active,
a:link {
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

p a:active {
  position: relative;
  color: var(--first-color);
}
p a:hover {
  color: var(--first-color);
  background: var(--quarter);
}
p a:hover::after {
  opacity: 0.2;
}
::selection
{
	background: var(--first-color);
	color: var(--primary);
}
h1 {
  font-size: 72px;
}
h2 {
  font-weight: bold;
  color: var(--first-color);
  margin-bottom: 0;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
h3 {
  color: var(--first-color);
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
h1,
h2,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

::-webkit-input-placeholder {
  font-size: 16px !important;
  font-weight: 500;
  color: var(--gray) !important;
}
:-moz-placeholder /* older Firefox*/ {
  font-size: 16px !important;
  font-weight: 500;
  color: var(--gray) !important;
}
::-moz-placeholder /* Firefox 19+ */ {
  font-size: 16px !important;
  font-weight: 500;
  color: var(--gray) !important;
}
:-ms-input-placeholder {
  font-size: 16px !important;
  font-weight: 500;
  color: var(--gray) !important;
}
::input-placeholder {
  font-size: 16px !important;
  font-weight: 500;
  color: var(--gray) !important;
}
.form-control {
  color: var(--cancel);
}
section {
  display: block;
  position: relative;
  box-sizing: border-box;
}
.clear {
  clear: both;
}
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
.float_left {
  float: left;
}
.float_right {
  float: right;
}
.trans_200 {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.trans_300 {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.trans_400 {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.trans_500 {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.fill_height {
  height: 100%;
}
.super_container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 100px;
}

/*********************************
3. Home
*********************************/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--tertiary);
  z-index: 10;
}
.top_nav {
  width: 100%;
  height: 30px;
  background: var(--tertiary);
}
.top_nav_left {
  height: 50px;
  line-height: 50px;
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
}

/*********************************
3.1 Currency
*********************************/

.currency {
  display: inline-block;
  position: relative;
  min-width: 50px;
  border-right: solid 1px var(--gray);
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
  vertical-align: middle;
  background: var(--primary);
}
.currency > a {
  display: block;
  color: var(--gray);
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  font-size: 13px;
  text-transform: uppercase;
}
.currency > a > i {
  margin-left: 8px;
}
.currency:hover .currency_selection {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.currency_selection {
  display: block;
  position: absolute;
  right: 0;
  top: 120%;
  margin: 0;
  width: 100%;
  background: var(--tertiary);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  box-shadow: 0 0 25px rgba(63, 78, 100, 0.15);
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: all 0.3s ease;
}
.currency_selection li {
  padding-left: 10px;
  padding-right: 10px;
  line-height: 50px;
}
.currency_selection li a {
  display: block;
  color: var(--primary);
  border-bottom: solid 1px var(--gray);
  font-size: 13px;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: all 0.3s ease;
}
.currency_selection li a:hover {
  color: var(--gray);
}
.currency_selection li:last-child a {
  border-bottom: none;
}

/*********************************
3.2 Language
*********************************/

.language {
  display: inline-block;
  position: relative;
  min-width: 50px;
  border-right: solid 1px var(--primary);
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
  vertical-align: middle;
  background: var(--primary);
}
.language > a {
  display: block;
  color: var(--gray);
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  font-size: 13px;
}
.language > a > i {
  margin-left: 8px;
}
.language:hover .language_selection {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.language_selection {
  display: block;
  position: absolute;
  right: 0;
  top: 120%;
  margin: 0;
  width: 100%;
  background: var(--tertiary);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  box-shadow: 0 0 25px rgba(63, 78, 100, 0.15);
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: all 0.3s ease;
}
.language_selection li {
  padding-left: 10px;
  padding-right: 10px;
  line-height: 50px;
}
.language_selection li a {
  display: block;
  color: var(--primary);
  border-bottom: solid 1px var(--gray);
  font-size: 13px;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: all 0.3s ease;
}
.language_selection li a:hover {
  color: var(--gray);
}
.language_selection li:last-child a {
  border-bottom: none;
}

/*********************************
3.3 Account
*********************************/

.account {
  display: inline-block;
  position: relative;
  min-width: 50px;
  padding-left: 20px;
  text-align: center;
  vertical-align: middle;
  background: var(--primary);
}
.account > a {
  display: block;
  color: var(--gray);
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  font-size: 13px;
}
.account > a > i {
  margin-left: 8px;
}
.account:hover .account_selection {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.account_selection {
  display: block;
  position: absolute;
  right: 0;
  top: 120%;
  margin: 0;
  width: 100%;
  background: var(--gray);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  box-shadow: 0 0 25px rgba(63, 78, 100, 0.15);
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: all 0.3s ease;
}
.account_selection li {
  padding-left: 10px;
  padding-right: 10px;
  line-height: 50px;
}
.account_selection li a {
  display: block;
  color: var(--primary);
  border-bottom: solid 1px var(--tertiary);
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.account_selection li a:hover {
  color: var(--gray);
}
.account_selection li:last-child a {
  border-bottom: none;
}
.account_selection li a i {
  margin-right: 10px;
}

/*********************************
3.4 Main Navigation
*********************************/

.main_nav_container {
  width: 100%;
  background: var(--tertiary);
  box-shadow: 0 3px 5px -2px rgb(0 0 0 / 20%);
  height: 90px;
}
.navbar {
  width: auto;
  height: 100px;
  float: right;
  padding-left: 0px;
  padding-right: 0px;
}
.navbar_menu li {
  display: inline-block;
}
.navbar_menu li a {
  display: block;
  color: var(--primary);
  font-size: 14px;
  padding: 15px;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.navbar_menu li a:hover {
  color: var(--first-color);
}
.navbar_menu li {
  position: relative;
}

.navbar_menu li a {
  position: relative;
  text-decoration: none; 
  color: var(--primary); 
}

.navbar_menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10px; 
  width: 100%; 
  height: 2px; 
  background: var(--first-color); 
  transform: scaleX(0);
  transition: transform 0.3s ease; 
}
.navbar_menu li a:hover::after {
  transform: scaleX(1); 
}

.navbar_user {
  margin-left: 37px;
}
.navbar_user li {
  display: inline-block;
  text-align: center;
}
.navbar_user li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  color: var(--primary);
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.navbar_user li a:hover {
  color: var(--gray);
  transform: scale(1.2);
}
.checkout a {
  background: var(--tertiary);
  border-radius: 50%;
}
.checkout_items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -9px;
  left: 22px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cancel);
  font-size: 12px;
  color: var(--tertiary);
}

/*********************************
3.5 Hamburger Menu
*********************************/

.hamburger_container {
  display: none;
  margin-left: 40px;
}
.hamburger_container i {
  font-size: 24px;
  color: var(--primary);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.hamburger_container:hover i {
  color: var(--gray);
}
.hamburger_menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  z-index: 10;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.hamburger_menu.active {
  right: 0;
}
.fs_menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.hamburger_close {
  position: absolute;
  top: 13px;
  right: 8px;
  padding: 10px;
  z-index: 1;
}
.hamburger_close i {
  font-size: 24px;
  color: var(--primary);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.hamburger_close:hover i {
  color: var(--gray);
}
.hamburger_menu_content {
  padding-top: 100px;
  width: 100%;
  height: 100%;
  padding-right: 20px;
}
.menu_item {
  display: block;
  position: relative;
  border-bottom: solid 1px var(--gray);
  vertical-align: middle;
}
.menu_item > a {
  display: block;
  color: var(--primary);
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  text-transform: uppercase;
}
.menu_item > a:hover {
  color: var(--gray);
}
.menu_item > a > i {
  margin-left: 8px;
}
.menu_item.active .menu_selection {
  display: block;
  visibility: visible;
  opacity: 1;
}
.menu_selection {
  margin: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu_selection li {
  padding-left: 10px;
  padding-right: 10px;
  line-height: 50px;
}
.menu_selection li a {
  display: block;
  color: var(--primary);
  border-bottom: solid 1px var(--gray);
  font-size: 13px;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: all 0.3s ease;
}
.menu_selection li a:hover {
  color: var(--gray);
}
.menu_selection li:last-child a {
  border-bottom: none;
}

/*********************************
3.6 Logo
*********************************/

.logo_container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
}
.logo_container a {
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
}
.logo_container a span {
  color: var(--cancel);
}

/*********************************
3.7 Main Slider
*********************************/

.main_slider {
  width: 100%;
  height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 150px;
}
.main_slider_content {
  width: 60%;
}
.main_slider_content h6 {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 29px;
}
.main_slider_content h1 {
  font-weight: 400;
  line-height: 1;
}

.shop_now_button {
  width: 140px;
  margin-top: 32px;
}

/*********************************
4. Banner
*********************************/

.banner {
  width: 100%;
  margin-top: 30px;
}
.banner_item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 265px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.banner_category {
  height: 50px;
  background: var(--tertiary);
  min-width: 180px;
  padding-left: 25px;
  padding-right: 25px;
}
.banner_category a {
  display: block;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  line-height: 50px;
  width: 100%;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.banner_category a:hover {
  color: var(--gray);
}

/*********************************
5. New Arrivals
*********************************/

.new_arrivals {
  width: 100%;
}
.new_arrivals_title {
  margin-top: 74px;
}

/*********************************
5.1 New Arrivals Sorting
*********************************/

.new_arrivals_sorting {
  display: inline-block;
  border-radius: 3px;
  margin-top: 59px;
  overflow: visible;
}
.grid_sorting_button {
  height: 40px;
  min-width: 102px;
  padding-left: 25px;
  padding-right: 25px;
  cursor: pointer;
  border: solid 1px var(--tertiary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--tertiary);
  border-radius: 3px;
  margin: 0;
  float: left;
  margin-left: -1px;
}
.grid_sorting_button:first-child {
  margin-left: 0px;
}

.grid_sorting_button.active:hover {
  background: var(--quarter) !important;
}
.grid_sorting_button.active {
  color: var(--tertiary);
  background: var(--cancel);
}

/*********************************
5.2 New Arrivals Products Grid
*********************************/

.product-grid {
  width: 100%;
  margin-top: 57px;
}
.product-item {
  width: 20%;
  height: 380px;
  cursor: pointer;
}
.product-item::after {
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
  width: calc(100% + 1px);
  height: 100%;
  pointer-events: none;
  content: "";
  border: solid 2px rgba(235, 235, 235, 0);
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-item:hover::after {
  box-shadow: 0 25px 29px rgba(63, 78, 100, 0.15);
  border: solid 2px rgba(235, 235, 235, 1);
}
.product {
  width: 100%;
  height: 340px;
  border-right: solid 1px var(--tertiary);
}
.product_image {
  width: 100%;
}
.product_image img {
  width: 100%;
}
.product_info {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
.product_name {
  margin-top: 27px;
}
.product_name a {
  color: var(--primary);
  line-height: 20px;
}
.product_name:hover a {
  color: var(--gray);
}
.discount .product_info .product_price {
  font-size: 14px;
}
.product_price {
  font-size: 16px;
  color: var(--gray);
  font-weight: bold;
}
.product_price span {
  font-size: 12px;
  margin-left: 10px;
  color: var(--gray);
  text-decoration: line-through;
}
.product_bubble {
  position: absolute;
  top: 15px;
  width: 50px;
  height: 22px;
  border-radius: 3px;
  text-transform: uppercase;
}
.product_bubble span {
  font-size: 12px;
  font-weight: 600;
  color: var(--tertiary);
}
.product_bubble_right::after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  left: 6px;
  right: auto;
  top: auto;
  bottom: -6px;
  border: 6px solid;
}
.product_bubble_left::after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  left: auto;
  right: 6px;
  bottom: -6px;
  border: 6px solid;
}
.product_bubble_red::after {
  border-color: transparent transparent transparent var(--cancel);
}
.product_bubble_left::after {
  border-color: var(--accept) var(--accept) transparent transparent;
}
.product_bubble_red {
  background: var(--cancel);
}
.product_bubble_green {
  background: var(--accept);
}
.product_bubble_left {
  left: 15px;
}
.product_bubble_right {
  right: 15px;
}
.add_to_cart_button {
  width: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.add_to_cart_button a {
  font-size: 12px;
  font-weight: 600;
}
.product-item:hover .add_to_cart_button {
  visibility: visible;
  opacity: 1;
}
.favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--gray);
  width: 17px;
  height: 17px;
  visibility: hidden;
  opacity: 0;
}
.favorite_left {
  left: 15px;
}
.favorite.active {
  visibility: visible;
  opacity: 1;
}
.product-item:hover .favorite {
  visibility: visible;
  opacity: 1;
}
.favorite.active::after {
  font-family: "FontAwesome";
  content: "\f004";
  color: var(--cancel);
}
.favorite::after {
  font-family: "FontAwesome";
  content: "\f08a";
}
.favorite:hover::after {
  color: var(--cancel);
}

/*********************************
6. Deal of the week
*********************************/

.deal_ofthe_week {
  width: 100%;
  margin-top: 41px;
  background: var(--tertiary);
}
.deal_ofthe_week_img {
  height: 540px;
}
.deal_ofthe_week_img img {
  height: 100%;
}
.deal_ofthe_week_content {
  height: 100%;
}
.section_title {
  display: inline-block;
  text-align: center;
}
.section_title h2 {
  display: inline-block;
}

.timer {
  margin-top: 66px;
}
.timer li {
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--tertiary);
  margin-right: 10px;
}
.timer li:last-child {
  margin-right: 0px;
}
.timer_num {
  font-size: 48px;
  font-weight: 600;
  color: var(--cancel);
  margin-top: 10px;
}
.timer_unit {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
}
.deal_ofthe_week_button {
  width: 140px;
  background: var(--primary);
  margin-top: 52px;
}
.deal_ofthe_week_button:hover {
  background: var(--primary) !important;
}

/*********************************
7. Best Sellers
*********************************/

.product_slider_container {
  width: 100%;
  height: 340px;
  margin-top: 73px;
}
.product_slider_container::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--tertiary);
  content: "";
  z-index: 1;
}
.product_slider {
  overflow: visible !important;
}
.product_slider_item .product-item {
  height: 340px;
}
.product_slider_item {
  width: 20%;
}
.product_slider_item .product-item {
  width: 100% !important;
}

/*********************************
7.1 Slider Nav
*********************************/

.product_slider_nav {
  position: absolute;
  width: 30px;
  height: 70px;
  background: var(--gray);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.product_slider_container:hover .product_slider_nav {
  visibility: visible;
  opacity: 1;
}
.product_slider_nav i {
  color: var(--tertiary);
  font-size: 12px;
}
.product_slider_nav_left {
  top: 50%;
  left: 0;
}
.product_slider_nav_right {
  top: 50%;
  right: 0;
}

/*********************************
8. Benefit
*********************************/

.benefit {
  margin-top: 74px;
}
.benefit_row {
  padding-left: 15px;
  padding-right: 15px;
}
.benefit_col {
  padding-left: 0px;
  padding-right: 0px;
}
.benefit_item {
  height: 100px;
  background: var(--tertiary);
  border-right: solid 1px var(--tertiary);
  padding-left: 25px;
}
.benefit_col:last-child .benefit_item {
  border-right: none;
}
.benefit_icon i {
  font-size: 30px;
  color: var(--cancel);
}
.benefit_content {
  padding-left: 22px;
}
.benefit_content h6 {
  text-transform: uppercase;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 0px;
}
.benefit_content p {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0px;
  color: var(--primary);
}

/*********************************
9. Blogs
*********************************/

.blogs {
  margin-top: 72px;
}
.blogs_container {
  margin-top: 53px;
}
.blog_item {
  height: 255px;
  width: 100%;
}
.blog_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.blog_content {
  position: absolute;
  top: 30px;
  left: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  background: rgba(255, 255, 255, 0.9);
  padding-left: 10px;
  padding-right: 10px;
  visibility: hidden;
  opacity: 0;
  transform-origin: center center;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.blog_item:hover .blog_content {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.blog_title {
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0px;
}
.blog_meta {
  font-size: 12px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0px;
  margin-top: 3px;
  letter-spacing: 1px;
}
.blog_more {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: var(--cancel);
  border-bottom: solid 1px var(--cancel);
  margin-top: 12px;
}
.blog_more:hover {
  color: var(--third-color);
}

/*********************************
10. Newsletter
*********************************/

.newsletter {
  width: 100%;
  background: var(--tertiary);
  margin-top: 81px;
  position: fixed;
  bottom: 0;
}
.newsletter_text {
  height: 120px;
}
.newsletter_text h4 {
  margin-bottom: 0px;
  line-height: 24px;
}
.newsletter_text p {
  margin-bottom: 0px;
  line-height: 1.7;
  color: var(--primary);
}
.newsletter_form {
  height: 120px;
}
#newsletter_email {
  width: 300px;
  height: 46px;
  background: var(--tertiary);
  border: none;
  padding-left: 20px;
}
#newsletter_email:focus {
  border: solid 1px var(--gray) !important;
  box-shadow: none !important;
}
:focus {
  outline: none !important;
}
#newsletter_email::-webkit-input-placeholder {
  font-size: 14px !important;
  font-weight: 400;
  color: var(--gray) !important;
}
#newsletter_email:-moz-placeholder /* older Firefox*/ {
  font-size: 14px !important;
  font-weight: 400;
  color: var(--gray) !important;
}
#newsletter_email::-moz-placeholder /* Firefox 19+ */ {
  font-size: 14px !important;
  font-weight: 400;
  color: var(--gray) !important;
}
#newsletter_email:-ms-input-placeholder {
  font-size: 14px !important;
  font-weight: 400;
  color: var(--gray) !important;
}
#newsletter_email::input-placeholder {
  font-size: 14px !important;
  font-weight: 400;
  color: var(--gray) !important;
}
.newsletter_submit_btn {
  width: 160px;
  height: 46px;
  border: none;
  background: var(--cancel);
  color: var(--tertiary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}
.newsletter_submit_btn:hover {
  background: var(--quarter);
}

/*********************************
11. Footer
*********************************/

.footer_nav_container {
  height: 70px;
}
.cr {
  margin-right: 48px;
  text-align: center;
}
.footer_nav li {
  display: inline-block;
  margin-right: 45px;
}
.footer_nav li:last-child {
  margin-right: 0px;
}
.footer_nav li a,
.cr {
  font-size: 14px;
  color: var(--primary);
  line-height: 80px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.footer_nav li a:hover,
.cr a,
.cr i {
  color: var(--cancel);
}
.footer_social {
  height: 130px;
}
.footer_social ul li {
  display: inline-block;
  margin-right: 10px;
}
.footer_social ul li:last-child {
  margin-right: 0px;
}
.footer_social ul li a {
  color: var(--primary);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 10px;
}
.footer_social ul li:last-child a {
  padding-right: 0px;
}
.footer_social ul li a:hover {
  color: var(--cancel);
}

/*pa cambiar el style del scroll*/
::-webkit-scrollbar {
  width: 8px;
  height: 2px;
}

::-webkit-scrollbar-thumb {
  border: 1px solid var(--gray);
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background: var(--gray);
  /*background: rgba(0,0,0,.1);*/
}

::-webkit-scrollbar-thumb:hover {
  background: grey;
}
/**********************************/

/*****CSS CARGANDO PAGINA*************/
.cargando {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--tertiary);
  z-index: 999999;
}
.cargando .loader-inner {
  position: absolute;
  border: 2px solid var(--cancel);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41)
    infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/************Mis css Generales*****************/
hr {
  background-color: var(--primary);
  height: 0.1em;
  max-width: 50%;
  margin: 0 auto;
}
.btn_raza {
  background: var(--third-color) !important;
  color: var(--tertiary);
  /* text-transform: uppercase; para convertir a mayuscula*/
  border: none;
  cursor: pointer;
}
.btn_raza:hover {
  cursor: pointer !important;
  color: var(--tertiary) !important;
  background: var(--primary) !important;
}

.btn_puntos {
  background: var(--cancel) !important;
  color: var(--tertiary);
  /* text-transform: uppercase; para convertir a mayuscula*/
  width: 100%;
  border: none;
  height: 46px;
  cursor: pointer;
  padding: 10px 25px;
}
.btn_puntos:hover {
  cursor: pointer !important;
  color: var(--tertiary) !important;
  background: var(--cancel) !important;
}

#mi_cuenta {
  color: var(--gray) !important;
}
#mi_cuenta:hover {
  text-decoration: underline !important;
  color: var(--cancel) !important;
}
#titleSpecial {
  font-size: 18px !important;
  color: var(--gray);
}
#hrSpecial {
  background-color: var(--cancel);
  height: 0.2em;
  margin: 0 auto;
  max-width: 100%;
}
#perfilUser {
  color: var(--cancel) !important;
}
#titleRegister {
  color: var(--cancel) !important;
  font-size: 18px;
}
.btnEnviarForm {
  background-color: var(--cancel);
  color: var(--tertiary);
}
.btnEnviarForm:hover {
  cursor: pointer;
  background: var(--cancel) !important;
}

.red_button {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 40px;
  background: var(--cancel);
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.red_button a:hover {
  background: var(--quarter) !important;
}
.red_button a {
  display: block;
  color: var(--tertiary);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 40px;
  width: 100%;
}
/******estilos de los Inputs para el formulario******/
input,
textarea,
select {
  margin: 15px 0;
  width: 100%;
  /*display: block;*/
  border: none;
  padding: 10px 0;
  border-bottom: solid 1px red;
  -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 96%, red 2%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, red 2%);
  background-position: -850px 0;
  background-size: 850px 100%;
  background-repeat: no-repeat;
  color: red;
}

input:focus,
input:valid {
  box-shadow: none;
  outline: none;
  background-position: 0 0;
}

input::-webkit-input-placeholder {
  font-size: 12px !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

input:focus::-webkit-input-placeholder,
input:valid::-webkit-input-placeholder {
  color: red;
  font-size: 11px;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  visibility: visible !important;
}

.MiLinkActivo {
  color: red !important;
  font-weight: bold;
}

.fa-power-off:hover {
  color: var(--primary);
}

.card_title {
  color: var(--primary) !important;
}
/* .product-card {
  height: 200px;
} */
.p_puntos {
  font-size: 18px;
  color: var(--gray) !important;
  opacity: 0.7;
}
#titleArticulo {
  color: var(--first-color) !important;
  font-size: var(--big-font-size);
}
.fa-angle-left:hover {
  cursor: pointer;
  color: var(--first-color) !important;
}

/*animacion hover al pasar cursor sobre los productos*/
@keyframes myanimation {
  50% {
    transform: scale(1.05);
  }
}
.Products:hover {
  cursor: pointer;
  animation-name: myanimation;
  animation-duration: 0.3s;
}
/***/

/*****Animacion al pasar el cursor sobre las imagenes de los productos, descripcion del producto.*****/
@keyframes descriptionProductsAnimation {
  50% {
    transform: scale(1.03);
  }
}
.hoverAnimationProduct:hover {
  cursor: pointer;
  animation-name: descriptionProductsAnimation;
  animation-duration: 0.3s;
}

#theadTableSpecial {
  background-color: var(--cancel) !important;
  color: var(--tertiary);
}
.btn-success:hover {
  cursor: pointer !important;
}
.aumentarCant {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accept);
  border-color: var(--accept);
  text-align: center;
  line-height: 40px;
  color: var(--tertiary);
}
.restarCant {
  display: inline-block;
  width: 40px; /* Ajusta el ancho según tus necesidades */
  height: 40px; /* Ajusta el alto según tus necesidades */
  border-radius: 50%; /* Convierte el botón en un círculo */
  background-color: red; /* Establece el color de fondo a rojo */
  text-align: center; /* Centra el contenido horizontalmente */
  line-height: 40px; /* Centra el contenido verticalmente */
  color: var(--tertiary); /* Establece el color del ícono a blanco */
}
.btn {
  cursor: pointer !important;
}
.btn.fa-bounce{
  background-color: var(--first-color);
  color: var(--tertiary);
  font-weight: bold;
  font-size: x-large;
}
.bi-plus {
  color: var(--tertiary);
  font-size: 20px;
}
.bi-dash {
  color: var(--tertiary) !important;
  font-size: 20px;
}
#totalPuntos {
  font-weight: 900;
  float: right;
  color: var(--primary) !important;
}

.card {
  box-shadow: 0px 17px 26px -8px rgba(151, 172, 193, 0.6);
}
.mi_logo { 
  width: 140px;
  transition: transform ease 0.3s;
}
.mi_logo:hover {
  transform: translateX(5px);
}
.main_title {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--tertiary);
  font-size: 3em;
  font-family: arial;
}
.main_title h1{
  color: var(--tertiary);
  font-size: 3rem;
  font-family: arial;
}
.img-fluid{
  filter: brightness(0.5);
  height: 65vh;
  object-fit: cover;
}
.yesDelete {
  margin: 0px 30px;
  color: var(--tertiary);
  padding: 0px 50px;
  border-radius: 20px;
  margin: 0px 30px;
}

.noDelete {
  color: var(--tertiary);
  padding: 0px 50px;
  border-radius: 20px;
}

.bi-arrow-right-circle {
  padding: 5px 15px;
  font-size: 20px;
}
.bi-arrow-left-circle {
  padding: 5px 15px;
  font-size: 20px;
}
/* ============= BROCHURE =============== */

.brochure-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.brochure__link{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.brochure__img{
  width: 14rem;
  height: auto;
  object-fit: cover;
  transition: filter .2s ease;
}
@media (hover:hover){
  .brochure__img:hover {
    filter: contrast(1.3);
  }
}
.brochure__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #EBC100;
  width: fit-content;
  position: relative;
  text-align: center;
}

.brochure__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 4px;
  background-color: #EBC100;
  transition: width 0.3s ease, right 0.3s ease;
}

@media (hover:hover){
  .brochure__title:hover::after {
    width: 100%;
    right: auto;
    left: 0;
  }
}

@media screen and (min-width: 768px){
  .brochure__link{
    flex-direction: row;
  }
}


/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 2rem;
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(255, 90%, 8%, .15);
  color: var(--title-color);
  display: inline-flex;
  padding: .5rem;
  font-size: 1.5rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover{
  transform: translateY(-.5rem);
  background-color: var(--secondary)
}


/* Show Scroll Up */
.show-scroll{
  bottom: 3rem;
}
/*=============== Whatsapp message ===============*/

.whatsapp__message {
  display: flex;
  width: 8rem;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 20;
}

.whatsapp__message a{
  display: flex;
  align-items: center;
  gap: .5rem;
}
.whatsapp__message a:hover  .label__whatsapp{
  display: block;
}

.label__whatsapp{
  display: none;
  text-align: center;
  min-width: 1rem;
  max-width: 21rem;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 10px;
  background: var(--body-color);
  color: var(--black-border);
  box-shadow: 0 1.93465px 7.73859px rgb(0 0 0 / 15%);
  font-size: 17px;
  line-height: 21px;
  transition: transform .4;
  position: relative;
}

.label__whatsapp::before {
  content: '';
  position: absolute;
  left: -10px; 
  top: 50%;
  transform: translateY(-50%); 
  width: 0;
  height: 0;
  border-left: 10px solid transparent;  
  border-right: 10px solid transparent; 
  border-top: 10px solid var(--body-color); 
}

/*=============== FOOTER ===============*/
.footer{
  background-color: var(--black-color);
  color: var(--white-color);
  padding-block: 3.5rem 2rem;
}
.footer ul{
  padding-left: 0;
}

.footer__container{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--black-border);
}

.footer__logo{
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
}
.footer__icon{
  width: 60px;
  padding-right: 1px;
}

.footer__logo span{
  color: var(--white-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
}

.footer__logo i{
  color: var(--first-color);
  font-size: 1.5rem;
}

.footer__description{
  margin-block: 1rem;
}

.footer__email,
.footer__info{
  font-style: normal;
  word-wrap: break-word;
  width: 70%;
}
.footer__mailto{
  font-style: normal;
  color: var(--text-color-light);
}
.footer__mailto:hover{
  color: var(--first-color);
  text-decoration: underline;
}

.footer__content{
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  flex: 2;
}

.footer__title{
  font-size: var(--h3-font-size);
  color: var(--white-color);
  margin-bottom: 1rem;
}

.footer__links,
.footer__list{
  display: grid;
  row-gap: .5rem;
}

.footer__link{
  color: var(--text-color-light);
  transition: color .4s;
}

.footer__link:hover{
  color: var(--first-color);
}

.footer__social{
  display: flex;
  column-gap: .5rem;
}

.footer__social-link{
  font-size: 1.5rem;
  color: var(--first-color);
  transition: transform .4s;
}

.footer__social-link:hover{
  transform: translateY(-.25rem);
}

.footer__copy{
  display: block;
  text-align: center;
  font-size: var(--small-font-size);
  margin-top: 4rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {

  .footer__content{
    grid-template-columns: repeat(1,max-content);
  }
  .main_title h1{
    font-size: 2.5rem;
  }
  .card_title{
    font-size: 1rem !important;
  }
  .card-body{
    padding: 5px;
  }
}

/* For medium devices */
@media screen and (min-width: 540px){
  .footer__content {
    grid-template-columns: repeat(2, max-content);
  }
}


@media screen and (min-width: 768px){
  .footer__container{
    flex-direction: row;
  }

}

/* For large devices */
@media screen and (min-width: 1150px) {
  .footer{
    padding-block: 4.5rem 3rem;
  }
  .footer__container{
    padding-bottom: 6rem;
  }
  .footer__description{
    margin-block: 1.5rem;
  }
  .footer__title{
    margin-bottom: 1.5rem;
  }
  .footer__links,
  .footer__list{
    row-gap: 1rem;
  }
}