﻿/*
Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #1E88E5
	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
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;


}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2B2D42;
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: #2B2D42;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover,
a:focus {
  color: #1E88E5;
  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: #1E88E5;
  border: none;
  border-radius: 40px;
  color: #FFF;
  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: #FFF;
}

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

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  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 #E4E7ED;
  background-color: #FFF;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up,
.input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  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: #E4E7ED;
  color: #1E88E5;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #E4E7ED;
  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 #E4E7ED;
  background: #FFF;
}

.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: #FFF;
  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: "\2713";
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #FFF;
  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: #1E88E5;
  border-color: #1E88E5;
}

.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: 30px;
  padding-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
}

.section-title .title {
  display: inline-block;
  text-transform: uppercase;
  margin: 0px;
}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.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: #8D99AE;
}

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

.section-tab-nav li.active a {
  color: #1E88E5;
}

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

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

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

#breadcrumb {
  padding: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 30px;
}

#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: #8D99AE;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #1E88E5;
}

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

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #1E1F29;
}

.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: #FFF;
}

.header-links li a:hover {
  color: #1E88E5;
}

.header-links li i {
  color: #1E88E5;
  margin-right: 5px;
}

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

#header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15161D;
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
  max-width: 100%;
  /* width: 150px; */
  height: 100px;
}

.header-logo .logo span {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 2.9rem;
}

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

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

.header-search form {
  position: relative;
}

.header-search form .input-select {
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.header-search form .input {
  width: calc(100% - 260px);
  margin-right: -4px;
}

.header-search form .search-btn {
  height: 40px;
  width: 100px;
  background: #1E88E5;
  color: #FFF;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 15px 0px;
}

.header-ctn>div {
  display: inline-block;
}

.header-ctn>div+div {
  margin-left: 15px;
}

.header-ctn>div>a {
  display: block;
  position: relative;
  width: 90px;
  text-align: center;
  color: #FFF;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 18px;
}

.header-ctn>div>a>span {
  font-size: 12px;
}

.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: #FFF;
  background-color: #1E88E5;
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-dropdown {
  position: absolute;
  width: 300px;
  background: #FFF;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
  box-shadow: 0px 0px 0px 2px #E4E7ED;
  z-index: 99;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.dropdown.open>.cart-dropdown {
  opacity: 1;
  visibility: visible;
}

.cart-dropdown .cart-list {
  max-height: 180px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: #2B2D42;
}

.cart-dropdown .cart-btns {
  margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns>a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: #1E88E5;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child {
  margin-right: -4px;
  background-color: #1e1f29;
}

.cart-dropdown .cart-btns>a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
  border-top: 1px solid #E4E7ED;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

@media (max-width:468px) {
  .header-ctn>div+div {
    margin-left: 0px;
  }
}

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

#navigation {
  background: #FFF;
  border-bottom: 2px solid #E4E7ED;
  border-top: 3px solid #1E88E5;
}

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

.main-nav>li+li {
  margin-left: 30px
}

.main-nav>li>a {
  padding: 20px 0px;
}

.main-nav>li>a:hover,
.main-nav>li>a:focus,
.main-nav>li.active>a {
  color: #1E88E5;
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #1E88E5;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

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

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }

  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #15161D;
    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.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }

  .main-nav {
    margin: 0px;
    float: none;
  }

  .main-nav>li {
    display: block;
    float: none;
  }

  .main-nav>li+li {
    margin-left: 0px;
  }

  .main-nav>li>a {
    padding: 15px;
    color: #FFF;
  }
}

/*=========================================================
	04 -> HERO BANNER
===========================================================*/

#hero-banner {
  padding: 80px 0px;
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
  background-image: url('../img/banner-2.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: #FFF;
  overflow: hidden;
}

#hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(229 30 30 / 95%) 0%, rgba(21, 101, 192, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.4;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-items {
  text-align: center;
}

.stat-items h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #FFF;
}

.stat-items span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-btn-primary {
  background-color: #FFF;
  color: #1E88E5;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #1E88E5;
}

.hero-btn-secondary {
  background-color: transparent;
  color: #FFF;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #FFF;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background-color: #FFF;
  color: #1E88E5;
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: center;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.feature-card:nth-child(2) {
  animation-delay: 0.6s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.8s;
}

.feature-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1565C0;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFF;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media only screen and (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-items h3 {
    font-size: 28px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-features {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  #hero-banner {
    padding: 60px 0px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-stats {
    justify-content: center;
    gap: 15px;
  }

  .stat-items {
    flex: 1;
  }

  .stat-items h3 {
    font-size: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/*=========================================================
	05 -> CATEGORY SHOP
===========================================================*/

.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
  max-height: 380px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 46%;
  background: #1E88E5;
  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: #1E88E5;
  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: #E4E7ED;
  z-index: -1;
  max-height: 100%;
  max-width: 100%;
}

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

.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: #FFF;
}

.shop .shop-body .cta-btn {
  color: #FFF;
  text-transform: uppercase;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
  padding: 60px 0px;
  margin: 30px 0px;
  background-color: #E4E7ED;
  background-image: url('../img/hot-sale.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hot-deal {
  text-align: center;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #1E88E5e6;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
  color: #FFF;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #FFF;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}

@media (max-width:768px) {
  .hot-deal .hot-deal-countdown>li {
    width: 80px;
    height: 80px;
    margin: 0px 3px;
  }
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/
.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;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product .product-img {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.product .product-img>img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  max-width: none;
  transition: transform 0.3s ease;
}

.product:hover .product-img>img {
  transform: scale(1.05);
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color: #1E88E5;
  color: #1E88E5;
}

.product .product-img .product-label>span.new {
  background-color: #1E88E5;
  border-color: #1E88E5;
  color: #FFF;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.product .product-body .product-price {
  color: #1E88E5;
  font-size: 18px;
}

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

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #FFF;
  color: #E4E7ED;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color: #facc15;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #1E88E5;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #FFF;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 15px;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}

.product:hover .add-to-cart {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 60;
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #1E88E5;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #1E88E5;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #1E88E5;
  border-color: #1E88E5;
  padding: 0px 30px 0px 50px;
}

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

/*----------------------------*\
	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: #1E88E5;
}

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

.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 .slick-track {
  display: flex;
  align-items: stretch;
}

.products-slick .product.slick-slide {
  margin: 15px;
  height: auto;
  display: flex;
  align-items: stretch;
}

.products-slick .product.slick-slide>div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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>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-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: #1E88E5;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #1E88E5;
  -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 {
  display: inline-block;
}

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

.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: #1E88E5;
}

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

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

.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: #1E88E5;
}

.store-pagination li.active {
  background-color: #1E88E5;
  border-color: #1E88E5;
  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
===========================================================*/
#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: #1E88E5;
}

#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: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/
.product-details .product-name {
  text-transform: uppercase;
  font-size: 18px;
}

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

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

.product-details .product-rating>i.fa-star {
  color: #1E88E5;
}

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

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #1E88E5;
}

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

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #1E88E5;
}

.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: #1E88E5;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #1E88E5;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #1E88E5;
  border-color: #1E88E5;
  padding: 0px 30px 0px 50px;
}

.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: #1E88E5;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #1E88E5;
  -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: #1E88E5;
}

.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: #1E88E5;
  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: #1E88E5;
}

.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: #1E88E5;
}

.reviews-pagination li.active {
  background-color: #1E88E5;
  border-color: #1E88E5;
  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: #1E88E5;
}

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

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.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: #1E88E5;
}

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

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

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
  border-top: 2px solid #E4E7ED;
  border-bottom: 3px solid #1E88E5;
  margin-top: 30px;
}

.newsletter {
  text-align: center;
}

.newsletter p {
  font-size: 24px;
}

.newsletter form {
  position: relative;
  max-width: 520px;
  margin: 30px auto;
}

.newsletter form:after {
  content: "\f003";
  font-family: FontAwesome;
  position: absolute;
  font-size: 160px;
  color: #E4E7ED;
  top: 15px;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
  z-index: -1;
  left: -90px;
}

.newsletter form .input {
  width: calc(100% - 160px);
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
  width: 160px;
  height: 40px;
  font-weight: 700;
  background: #1E88E5;
  color: #FFF;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

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

.newsletter .newsletter-follow li {
  display: inline-block;
  margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
  margin-right: 0px;
}

.newsletter .newsletter-follow li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover,
.newsletter .newsletter-follow li a:focus {
  background-color: #E4E7ED;
  color: #1E88E5;
}

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

#footer {
  background: #15161D;
  color: #B9BABC;
}

#bottom-footer {
  background: #1E1F29;
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: #FFF;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}

.footer-links li+li {
  margin-top: 15px;
}

.footer-links li a {
  color: #B9BABC;
}

.footer-links li i {
  margin-right: 15px;
  color: #1E88E5;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: #1E88E5;
}

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #ababab;
  font-size: 36px;
  display: block;
}

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

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

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #E4E7ED;
  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: #1E88E5;
  border-color: #1E88E5;
}

.slick-prev:before,
.slick-next:before {
  font-family: FontAwesome;
  color: #2B2D42;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  color: #FFF;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	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: #1E88E5;
}

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


/* Quick View Modal css */

.quick-view-modal .modal-dialog {
  max-width: 900px;
}

.quick-view-modal .modal-content {
  border-radius: 0;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-view-modal .modal-header {
  background: #f8f9fa;
  border-bottom: 1px solid #e4e7ed;
  padding: 20px;
}

.quick-view-modal .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
}

.quick-view-modal .close {
  font-size: 24px;
  color: #8D99AE;
  opacity: 1;
  transition: 0.2s;
}

.quick-view-modal .close:hover {
  color: #2B2D42;
}

.quick-view-modal .modal-body {
  padding: 30px;
}

.quick-view-content {
  display: flex;
  align-items: center;
}

.quick-view-image {
  text-align: center;
  margin-bottom: 20px;
}

.quick-view-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-view-details {
  padding-left: 20px;
}

.quick-view-details .product-name {
  font-size: 24px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 10px;
  line-height: 1.3;
}

.quick-view-details .product-category {
  color: #8D99AE;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-view-details .product-rating {
  margin-bottom: 15px;
}

.quick-view-details .product-rating i {
  color: #ffc107;
  font-size: 14px;
}

.quick-view-details .product-price {
  font-size: 28px;
  font-weight: 700;
  color: #1E88E5;
  margin-bottom: 20px;
}

.quick-view-details .product-price del {
  color: #8D99AE;
  font-size: 18px;
  font-weight: 400;
  margin-left: 10px;
}

.quick-view-details .product-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.quick-view-actions {
  margin-bottom: 30px;
}

.quantity-selector {
  margin-bottom: 20px;
}

.quantity-selector label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #2B2D42;
}

.quick-view-actions .input-number {
  display: inline-block;
  width: 120px;
  margin-bottom: 20px;
  position: relative;
}

.quick-view-actions .input-number input {
  width: 100%;
  height: 40px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
}

.quick-view-actions .input-number .qty-up,
.quick-view-actions .input-number .qty-down {
  position: absolute;
  right: 1px;
  width: 30px;
  height: 19px;
  background: #f8f9fa;
  border: 1px solid #e4e7ed;
  cursor: pointer;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
}

.quick-view-actions .input-number .qty-up {
  top: 1px;
  border-bottom: none;
}

.quick-view-actions .input-number .qty-down {
  bottom: 1px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.quick-view-actions .add-to-cart-btn {
  background: #1E88E5;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-view-actions .add-to-cart-btn:hover {
  background: #1565C0;
}

.quick-view-actions .add-to-wishlist {
  background: transparent;
  border: 1px solid #e4e7ed;
  color: #8D99AE;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-view-actions .add-to-wishlist:hover {
  border-color: #1E88E5;
  color: #1E88E5;
}

.product-features {
  border-top: 1px solid #e4e7ed;
  padding-top: 20px;
}

.product-features h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 15px;
}

.product-features ul {
  list-style: none;
  padding: 0;
}

.product-features ul li {
  padding: 5px 0;
  color: #666;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.product-features ul li:before {
  content: "-";
  position: absolute;
  left: 0;
  color: #1E88E5;
  font-weight: bold;
}

@media (max-width: 768px) {
  .quick-view-modal .modal-dialog {
    margin: 10px;
  }

  .quick-view-modal .modal-body {
    padding: 20px;
  }

  .quick-view-content .row {
    flex-direction: column;
  }

  .quick-view-details {
    padding-left: 0;
    margin-top: 20px;
  }

  .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-view-actions .add-to-wishlist {
    align-self: center;
    width: 50px;
    height: 50px;
  }
}

/*=========================================================
	14 -> COMPARE MODAL
===========================================================*/

.compare-modal .modal-dialog {
  max-width: 1200px;
}

.compare-modal .modal-content {
  border-radius: 0;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compare-modal .modal-header {
  background: #f8f9fa;
  border-bottom: 1px solid #e4e7ed;
  padding: 20px;
}

.compare-modal .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
}

.compare-modal .close {
  font-size: 24px;
  color: #8D99AE;
  opacity: 1;
  transition: 0.2s;
}

.compare-modal .close:hover {
  color: #2B2D42;
}

.compare-modal .modal-body {
  padding: 30px;
}

.compare-container {
  min-height: 400px;
}

.compare-products {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
}

.compare-product-card {
  flex: 0 0 280px;
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  transition: 0.2s;
}

.compare-product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.compare-product-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.compare-product-remove:hover {
  background: #c0392b;
}

.compare-product-image {
  text-align: center;
  margin-bottom: 15px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-product-image img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 4px;
}

.compare-product-name {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 40px;
}

.compare-product-category {
  color: #8D99AE;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.compare-product-rating {
  margin-bottom: 10px;
}

.compare-product-rating i {
  color: #ffc107;
  font-size: 12px;
}

.compare-product-price {
  font-size: 20px;
  font-weight: 700;
  color: #1E88E5;
  margin-bottom: 15px;
}

.compare-product-price del {
  color: #8D99AE;
  font-size: 14px;
  font-weight: 400;
  margin-left: 8px;
}

.compare-product-features {
  margin-bottom: 15px;
}

.compare-product-features h6 {
  font-size: 12px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.compare-product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-product-features ul li {
  font-size: 12px;
  color: #666;
  padding: 3px 0;
  position: relative;
  padding-left: 15px;
  line-height: 1.4;
}

.compare-product-features ul li:before {
  content: "-";
  position: absolute;
  left: 0;
  color: #1E88E5;
  font-weight: bold;
  font-size: 10px;
}

.compare-product-actions {
  display: flex;
  gap: 10px;
}

.compare-product-actions .btn {
  flex: 1;
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.compare-product-actions .btn-primary {
  background: #1E88E5;
  color: white;
}

.compare-product-actions .btn-primary:hover {
  background: #1565C0;
}

.compare-product-actions .btn-secondary {
  background: #f8f9fa;
  color: #2B2D42;
  border: 1px solid #e4e7ed;
}

.compare-product-actions .btn-secondary:hover {
  background: #e9ecef;
}

.compare-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
}

.empty-message i {
  font-size: 48px;
  color: #8D99AE;
  margin-bottom: 20px;
}

.empty-message h3 {
  color: #2B2D42;
  margin-bottom: 10px;
}

.empty-message p {
  color: #8D99AE;
  margin: 0;
}

.compare-modal .modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #e4e7ed;
}

.compare-modal .btn-default {
  background: #f8f9fa;
  color: #2B2D42;
  border: 1px solid #e4e7ed;
  padding: 8px 20px;
  border-radius: 4px;
  transition: 0.2s;
}

.compare-modal .btn-default:hover {
  background: #e9ecef;
}

.compare-modal .btn-primary {
  background: #1E88E5;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  transition: 0.2s;
}

.compare-modal .btn-primary:hover {
  background: #1565C0;
}

.header-ctn .compare-btn {
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}

.header-ctn .compare-btn:hover {
  color: #1E88E5;
}

.header-ctn .compare-btn .qty {
  position: absolute;
  top: -10px;
  right: 15px;
  background: #1E88E5;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-btn.active {
  color: #1E88E5;
}

@media (max-width: 768px) {
  .compare-modal .modal-dialog {
    margin: 10px;
  }

  .compare-modal .modal-body {
    padding: 20px;
  }

  .compare-products {
    flex-direction: column;
    gap: 15px;
  }

  .compare-product-card {
    flex: 1;
  }
}

/*=========================================================
	15 -> WISHLIST MODAL
===========================================================*/

.wishlist-modal .modal-dialog {
  max-width: 900px;
}

.wishlist-modal .modal-content {
  border-radius: 0;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wishlist-modal .modal-header {
  background: #f8f9fa;
  border-bottom: 1px solid #e4e7ed;
  padding: 20px;
}

.wishlist-modal .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
}

.wishlist-modal .close {
  font-size: 24px;
  color: #8D99AE;
  opacity: 1;
  transition: 0.2s;
}

.wishlist-modal .close:hover {
  color: #2B2D42;
}

.wishlist-modal .modal-body {
  padding: 30px;
}

.wishlist-container {
  min-height: 400px;
}

.wishlist-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.wishlist-product-card {
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  transition: 0.2s;
}

.wishlist-product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.wishlist-product-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.wishlist-product-remove:hover {
  background: #c0392b;
}

.wishlist-product-image {
  text-align: center;
  margin-bottom: 15px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-product-image img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  border-radius: 4px;
}

.wishlist-product-name {
  font-size: 14px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: 36px;
}

.wishlist-product-category {
  color: #8D99AE;
  font-size: 11px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wishlist-product-rating {
  margin-bottom: 8px;
}

.wishlist-product-rating i {
  color: #ffc107;
  font-size: 10px;
}

.wishlist-product-price {
  font-size: 16px;
  font-weight: 700;
  color: #1E88E5;
  margin-bottom: 12px;
}

.wishlist-product-price del {
  color: #8D99AE;
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
}

.wishlist-product-actions {
  display: flex;
  gap: 8px;
}

.wishlist-product-actions .btn {
  flex: 1;
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.wishlist-product-actions .btn-primary {
  background: #1E88E5;
  color: white;
}

.wishlist-product-actions .btn-primary:hover {
  background: #1565C0;
}

.wishlist-product-actions .btn-secondary {
  background: #f8f9fa;
  color: #2B2D42;
  border: 1px solid #e4e7ed;
}

.wishlist-product-actions .btn-secondary:hover {
  background: #e9ecef;
}

.wishlist-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
}

.wishlist-empty .empty-message i {
  font-size: 48px;
  color: #8D99AE;
  margin-bottom: 20px;
}

.wishlist-empty .empty-message h3 {
  color: #2B2D42;
  margin-bottom: 10px;
}

.wishlist-empty .empty-message p {
  color: #8D99AE;
  margin: 0;
}

.wishlist-modal .modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #e4e7ed;
}

.wishlist-modal .btn-default {
  background: #f8f9fa;
  color: #2B2D42;
  border: 1px solid #e4e7ed;
  padding: 8px 20px;
  border-radius: 4px;
  transition: 0.2s;
}

.wishlist-modal .btn-default:hover {
  background: #e9ecef;
}

.wishlist-modal .btn-primary {
  background: #1E88E5;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  transition: 0.2s;
}

.wishlist-modal .btn-primary:hover {
  background: #1565C0;
}

@media (max-width: 768px) {
  .wishlist-modal .modal-dialog {
    margin: 10px;
  }

  .wishlist-modal .modal-body {
    padding: 20px;
  }

  .wishlist-products {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/*=========================================================
	16 -> CONTACT PAGE
===========================================================*/

/* Contact Form Section */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.contact-form .title {
  font-size: 24px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-subtitle {
  color: #8D99AE;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  font-size: 12px;
  font-weight: 600;
  color: #2B2D42;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.contact-form .input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  font-size: 14px;
  color: #2B2D42;
  background: #fff;
  transition: 0.2s;
}

.contact-form .input:focus {
  border-color: #1E88E5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.1);
}

.contact-form textarea.input {
  resize: vertical;
  min-height: 120px;
}

.contact-form select.input {
  cursor: pointer;
}

.contact-form .custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form .custom-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #e4e7ed;
  border-radius: 3px;
  cursor: pointer;
}

.contact-form .custom-checkbox label {
  font-size: 14px;
  color: #2B2D42;
  cursor: pointer;
  margin: 0;
}

.contact-form .primary-btn {
  background: #1E88E5;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}

.contact-form .primary-btn:hover {
  background: #1565C0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.contact-info .title {
  font-size: 24px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 18px;
  color: #1E88E5;
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-content p {
  color: #8D99AE;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-info-content p br {
  display: block;
  margin-bottom: 5px;
  content: "";
}

.quick-links {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-links .title {
  font-size: 24px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links ul li {
  margin-bottom: 12px;
}

.quick-links ul li:last-child {
  margin-bottom: 0;
}

.quick-links ul li a {
  color: #2B2D42;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  display: flex;
  align-items: center;
}

.quick-links ul li a:before {
  content: "\2022";
  margin-right: 10px;
  color: #1E88E5;
  font-weight: bold;
  transition: 0.2s;
}

.quick-links ul li a:hover {
  color: #1E88E5;
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .contact-form,
  .contact-info,
  .quick-links {
    margin-bottom: 20px;
  }

  .contact-form .title,
  .contact-info .title,
  .quick-links .title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .contact-info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .contact-info-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/*=========================================================
	17 -> INFORMATION PAGES
===========================================================*/

/* About Us Page */
.about-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.about-text .title {
  font-size: 28px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-subtitle {
  color: #1E88E5;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about-text p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: 0.2s;
}

.about-features li:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.about-features i {
  color: #1E88E5;
  font-size: 18px;
  margin-right: 15px;
}

.about-features li span {
  color: #2B2D42;
  font-size: 14px;
  font-weight: 500;
}

.about-stats {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.about-stats h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.stat-item {
  text-align: center;
  padding: 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #1E88E5;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #8D99AE;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.about-mission {
  margin-top: 40px;
}

.about-mission h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: 0.2s;
}

.mission-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.mission-icon {
  width: 60px;
  height: 60px;
  background: #1E88E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.mission-icon i {
  font-size: 24px;
  color: white;
}

.mission-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 12px;
  text-align: center;
}

.mission-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Privacy Policy Page */
.privacy-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.privacy-content .title {
  font-size: 28px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.privacy-subtitle {
  color: #1E88E5;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

.privacy-section {
  margin-bottom: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #1E88E5;
}

.privacy-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.privacy-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 15px;
}

.privacy-section p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-section ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.privacy-section ul li:before {
  content: "\2022";
  color: #1E88E5;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Terms & Conditions Page */
.terms-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.terms-content .title {
  font-size: 28px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.terms-subtitle {
  color: #1E88E5;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

.terms-section {
  margin-bottom: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #1E88E5;
}

.terms-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.terms-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 15px;
}

.terms-section p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.terms-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-section ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.terms-section ul li:before {
  content: "â€¢";
  color: #1E88E5;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.terms-section ol {
  padding-left: 20px;
  margin: 0;
}

.terms-section ol li {
  margin-bottom: 10px;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Orders and Returns Page */
.orders-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.orders-content .title {
  font-size: 28px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.orders-subtitle {
  color: #1E88E5;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

.orders-section,
.returns-section {
  margin-bottom: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #1E88E5;
}

.orders-section h3,
.returns-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.orders-section h4,
.returns-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 15px;
}

.orders-section p,
.returns-section p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.info-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.info-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 15px;
}

/* Help Page */
.help-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.help-content .title {
  font-size: 28px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.help-subtitle {
  color: #1E88E5;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

.help-category {
  background: #f8f9fa;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 25px;
  transition: 0.2s;
}

.help-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: #1E88E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.category-icon i {
  font-size: 24px;
  color: white;
}

.help-category h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 20px;
  text-align: center;
}

.help-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-links li {
  margin-bottom: 12px;
}

.help-links li a {
  color: #2B2D42;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  display: block;
  padding: 8px 0;
  border-radius: 4px;
}

.help-links li a:hover {
  color: #1E88E5;
  background: #e9ecef;
  transform: translateX(5px);
}

.faq-section {
  margin-top: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
}

.faq-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-accordion {
  border-top: 1px solid #e4e7ed;
}

.faq-item {
  border-bottom: 1px solid #e4e7ed;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  padding: 20px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}

.faq-item h4:before {
  content: "+";
  position: absolute;
  left: 0;
  color: #1E88E5;
  font-size: 18px;
  transition: 0.2s;
}

.faq-item.active h4:before {
  content: "-";
}

.faq-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 20px 20px 50px;
  display: none;
}

.faq-item.active p {
  display: block;
}

.contact-support {
  margin-top: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
}

.contact-support h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 25px;
  text-align: center;
}

.support-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: 0.2s;
  margin: 0 10px;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.support-icon {
  width: 50px;
  height: 50px;
  background: #1E88E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.support-icon i {
  font-size: 18px;
  color: white;
}

.support-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 12px;
}

.support-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Help Section in Orders & Returns Page */
.help-section {
  margin-top: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
}

.help-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.help-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: 0.2s;
  /* height: 100%; */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
}

.help-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.help-icon {
  width: 60px;
  height: 60px;
  background: #1E88E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.help-icon i {
  font-size: 24px;
  color: white;
}

.help-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.help-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.help-box p br {
  display: block;
  margin-bottom: 5px;
  content: "";
}

@media (max-width: 768px) {

  .about-content,
  .privacy-content,
  .terms-content,
  .orders-content,
  .help-content {
    padding: 25px;
  }

  .about-text .title,
  .privacy-content .title,
  .terms-content .title,
  .orders-content .title,
  .help-content .title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mission-box {
    margin-bottom: 20px;
  }

  .help-category {
    margin-bottom: 20px;
  }

  .faq-item h4 {
    font-size: 15px;
    padding: 15px;
  }

  .support-card {
    margin-bottom: 20px;
  }

  .help-box {
    margin-bottom: 20px;

  }
}

/*=========================================================
	13 -> ACCOUNT PAGES
==========================================================*/

/* My Account Page */
.account-sidebar {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.account-user {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e4e7ed;
}

.user-avatar {
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.user-avatar i {
  font-size: 40px;
  color: #1E88E5;
}

.account-user h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 5px;
}

.account-user p {
  color: #8D99AE;
  font-size: 14px;
  margin: 0;
}

.account-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-nav li {
  margin-bottom: 5px;
}

.account-nav li a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #2B2D42;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s;
  font-size: 14px;
  font-weight: 500;
}

.account-nav li a i {
  width: 20px;
  margin-right: 10px;
  color: #8D99AE;
}

.account-nav li.active a,
.account-nav li a:hover {
  background: #1E88E5;
  color: white;
}

.account-nav li.active a i,
.account-nav li a:hover i {
  color: white;
}

.account-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.account-content .title {
  font-size: 28px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.account-subtitle {
  color: #1E88E5;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

.dashboard-stats {
  margin-bottom: 40px;
}

.stat-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: 0.2s;
  margin-bottom: 20px;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: #1E88E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.stat-icon i {
  font-size: 20px;
  color: white;
}

.stat-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 5px;
}

.stat-info p {
  color: #8D99AE;
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recent-activity h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
}

.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e4e7ed;
}

.order-item:last-child {
  border-bottom: none;
}

.order-info {
  flex: 1;
}

.order-number {
  font-weight: 600;
  color: #2B2D42;
  display: block;
  margin-bottom: 5px;
}

.order-date {
  color: #8D99AE;
  font-size: 14px;
}

.order-status .status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.status.delivered {
  background: #d4edda;
  color: #155724;
}

.status.processing {
  background: #fff3cd;
  color: #856404;
}

.status.shipped {
  background: #d1ecf1;
  color: #0c5460;
}

.order-total {
  font-weight: 600;
  color: #2B2D42;
  font-size: 16px;
}

/* Shopping Cart Page */
.cart-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.cart-content .title {
  font-size: 28px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-subtitle {
  color: #1E88E5;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cart-table {
  margin-bottom: 40px;
}

.cart-header {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #2B2D42;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.cart-product {
  flex: 2;
}

.cart-price,
.cart-quantity,
.cart-total {
  flex: 1;
  text-align: center;
}

.cart-remove {
  flex: 0.5;
  text-align: center;
}

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

.cart-item:hover {
  background: #f8f9fa;
}

.cart-item:last-child {
  border-bottom: none;
}

.product-info {
  display: flex;
  align-items: center;
  flex: 2;
}

.product-image {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  border-radius: 8px;
  overflow: hidden;
}

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

.product-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 5px;
}

.product-details p {
  color: #8D99AE;
  font-size: 14px;
  margin-bottom: 5px;
}

.product-sku {
  color: #1E88E5;
  font-size: 12px;
  font-weight: 500;
}

.cart-price .price,
.cart-total .total-price {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
}

.quantity-selector {
  position: relative;
  width: 120px;
  margin: 0 auto;
}

.quantity-selector .input-number {
  width: 100%;
  height: 40px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}

.quantity-selector .qty-up,
.quantity-selector .qty-down {
  position: absolute;
  right: 1px;
  width: 30px;
  height: 19px;
  background: #f8f9fa;
  border: 1px solid #e4e7ed;
  cursor: pointer;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
}

.quantity-selector .qty-up {
  top: 1px;
  border-bottom: none;
}

.quantity-selector .qty-down {
  bottom: 1px;
}

.remove-btn {
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: 0.2s;
}

.remove-btn:hover {
  background: #c0392b;
}

.cart-actions {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
}

.coupon-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 15px;
}

.coupon-form {
  display: flex;
  gap: 10px;
}

.coupon-form .input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  font-size: 14px;
}

.cart-summary {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e4e7ed;
}

.cart-summary h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
}

.summary-row.total {
  border-top: 2px solid #2B2D42;
  padding-top: 15px;
  font-weight: 600;
  font-size: 16px;
}

.total-amount {
  color: #1E88E5;
  font-size: 18px;
  font-weight: 700;
}

.cart-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.secondary-btn {
  background: #f8f9fa;
  color: #2B2D42;
  border: 1px solid #e4e7ed;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
  display: inline-block;
}

.secondary-btn:hover {
  background: #e9ecef;
  color: #2B2D42;
}

/* Wishlist Page */
.wishlist-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: center;
}

.wishlist-content .title {
  font-size: 28px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wishlist-subtitle {
  color: #1E88E5;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

.remove-from-wishlist {
  color: #e74c3c !important;
}

.remove-from-wishlist:hover {
  color: #c0392b !important;
}

/* Track Order Page */
.track-order-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.track-order-content .title {
  font-size: 28px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.track-subtitle {
  color: #1E88E5;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

.tracking-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.tracking-form .form-group {
  margin-bottom: 20px;
}

.tracking-form label {
  font-size: 12px;
  font-weight: 600;
  color: #2B2D42;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.tracking-form .input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  font-size: 14px;
  color: #2B2D42;
  background: #fff;
  transition: 0.2s;
}

.tracking-form .input:focus {
  border-color: #1E88E5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.1);
}

.tracking-result {
  margin-bottom: 40px;
}

.order-overview {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.order-details h3,
.order-status-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e4e7ed;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row .label {
  font-weight: 500;
  color: #8D99AE;
  font-size: 14px;
}

.detail-row .value {
  font-weight: 600;
  color: #2B2D42;
  font-size: 14px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}

.status-badge.delivered {
  background: #d4edda;
  color: #155724;
}

.status-badge.processing {
  background: #fff3cd;
  color: #856404;
}

.status-badge.shipped {
  background: #d1ecf1;
  color: #0c5460;
}

.tracking-timeline {
  margin-bottom: 40px;
}

.tracking-timeline h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e4e7ed;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -30px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 1;
}

.timeline-item.completed .timeline-marker {
  background: #28a745;
  color: white;
}

.timeline-item.active .timeline-marker {
  background: #1E88E5;
  color: white;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 5px;
}

.timeline-content p {
  color: #8D99AE;
  font-size: 14px;
  margin-bottom: 5px;
}

.timeline-content span {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.shipping-info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.shipping-address h3,
.order-items h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shipping-address p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.item-list {
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  padding: 20px;
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e4e7ed;
}

.item:last-child {
  border-bottom: none;
}

.item-name {
  flex: 2;
  color: #2B2D42;
  font-weight: 500;
}

.item-qty {
  flex: 1;
  text-align: center;
  color: #8D99AE;
}

.item-price {
  flex: 1;
  text-align: right;
  color: #1E88E5;
  font-weight: 600;
}

@media (max-width: 768px) {
  .account-sidebar {
    margin-bottom: 20px;
  }

  .account-content {
    padding: 25px;
  }

  .cart-content,
  .wishlist-content,
  .track-order-content {
    padding: 25px;
  }

  .cart-header {
    display: none;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .product-info {
    margin-bottom: 15px;
  }

  .cart-price,
  .cart-quantity,
  .cart-total,
  .cart-remove {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }

  .tracking-form {
    padding: 25px;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-marker {
    left: -20px;
  }

  .cart-buttons {
    flex-direction: column;
  }

  .coupon-form {
    flex-direction: column;
  }
}

/*=========================================================
	14 -> RESPONSIVE ADJUSTMENTS
==========================================================*/

@media (max-width: 768px) {

  .about-content,
  .privacy-content,
  .terms-content,
  .orders-content,
  .help-content {
    padding: 25px;
  }

  .about-text .title,
  .privacy-content .title,
  .terms-content .title,
  .orders-content .title,
  .help-content .title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mission-box {
    margin-bottom: 20px;
  }

  .help-category {
    margin-bottom: 20px;
  }

  .faq-item h4 {
    font-size: 15px;
    padding: 15px;
  }

  .support-card {
    margin-bottom: 20px;
  }

  .help-box {
    margin-bottom: 20px;
  }
}

/*=========================================================
	14 -> SUPPORT PAGE
==========================================================*/

/* Support Page */
.support-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.support-subtitle {
  color: #8D99AE;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Installation Guides */
.installation-guide {
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  transition: 0.3s;
  height: 100%;
}

.installation-guide:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.guide-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e7ed;
}

.guide-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1E88E5, #1565C0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.guide-icon i {
  font-size: 24px;
  color: #fff;
}

.guide-brand h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 5px;
}

.guide-type {
  color: #1E88E5;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guide-description {
  margin-bottom: 20px;
}

.guide-description p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

.guide-features {
  margin-bottom: 25px;
}

.guide-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-features li {
  display: flex;
  align-items: center;
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 8px;
}

.guide-features li i {
  color: #28a745;
  margin-right: 10px;
  font-size: 12px;
}

.guide-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.guide-actions .primary-btn {
  padding: 10px 20px;
  background: #1E88E5;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}

.guide-actions .primary-btn:hover {
  background: #1565C0;
  color: #fff;
}

.guide-actions .secondary-btn {
  padding: 10px 20px;
  background: transparent;
  color: #1E88E5;
  border: 1px solid #1E88E5;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guide-actions .secondary-btn:hover {
  background: #1E88E5;
  color: #fff;
}

.additional-support {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.additional-support h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2B2D42;
  margin-bottom: 30px;
  text-align: center;
}

.support-option {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.support-option:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.option-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1E88E5, #1565C0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.option-icon i {
  font-size: 32px;
  color: #fff;
}

.support-option h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 15px;
}

.support-option p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.support-option .learn-more {
  color: #1E88E5;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}

.support-option .learn-more:hover {
  color: #1565C0;
}

.support-option .learn-more i {
  margin-left: 5px;
  transition: 0.2s;
}

.support-option .learn-more:hover i {
  margin-left: 8px;
}

@media (max-width: 768px) {
  .support-content {
    padding: 25px;
  }

  .guide-header {
    flex-direction: column;
    text-align: center;
  }

  .guide-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .guide-actions {
    flex-direction: column;
  }

  .guide-actions .primary-btn,
  .guide-actions .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .additional-support {
    padding: 25px;
  }

  .support-option {
    margin-bottom: 20px;
  }

  .faq-section {
    padding: 25px;
  }
}

/*=========================================================
	15 -> AUTHENTICATION PAGES
==========================================================*/

/* Alert Messages */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeaa7;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.divider {
  margin: 0 10px;
  color: #fff;
}

/* Security Info Section */
.security-info {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #1E88E5;
}

.security-info h4 {
  color: #2B2D42;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.security-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-info li {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.security-info li:before {
  content: "•";
  color: #1E88E5;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/*=========================================================
	16 -> USER DASHBOARD
==========================================================*/
.account-sidebar {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  margin-bottom: 30px;
}

.account-user {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e7ed;
}

.user-avatar {
  font-size: 60px;
  color: #1E88E5;
  margin-bottom: 15px;
}

.account-user h4 {
  color: #2B2D42;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.account-user p {
  color: #8D99AE;
  font-size: 14px;
  margin-bottom: 10px;
}

.user-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.user-status.active {
  background: #d4edda;
  color: #155724;
}

.account-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-nav li {
  margin-bottom: 5px;
}

.account-nav li a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #6c757d;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}

.account-nav li a:hover {
  background: #f8f9fa;
  color: #1E88E5;
}

.account-nav li.active a {
  background: #1E88E5;
  color: #fff;
}

.account-nav i {
  margin-right: 10px;
  width: 16px;
  text-align: center;
}

/* Account Sections */
.account-section {
  display: none;
}

.account-section.active {
  display: block;
}

.account-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.account-content .title {
  color: #2B2D42;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.account-subtitle {
  color: #8D99AE;
  font-size: 16px;
  margin-bottom: 30px;
}

/* Dashboard Stats */
.dashboard-stats {
  margin-bottom: 40px;
}

.stat-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
  margin-bottom: 20px;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 30px;
  color: #1E88E5;
  margin-bottom: 10px;
}

.stat-info h3 {
  color: #2B2D42;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-info p {
  color: #8D99AE;
  font-size: 14px;
  margin: 0;
}

/* Recent Orders */
.recent-activity h3 {
  color: #2B2D42;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.order-summary {
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  overflow: hidden;
}

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

.order-item:last-child {
  border-bottom: none;
}

.order-info {
  flex: 1;
}

.order-number {
  display: block;
  color: #2B2D42;
  font-weight: 600;
  margin-bottom: 5px;
}

.order-date {
  color: #8D99AE;
  font-size: 14px;
}

.order-status {
  margin: 0 20px;
}

.status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.status.delivered {
  background: #d4edda;
  color: #155724;
}

.status.processing {
  background: #fff3cd;
  color: #856404;
}

.status.shipped {
  background: #cce5ff;
  color: #004085;
}

.status.pending {
  background: #f8d7da;
  color: #721c24;
}

.order-total {
  text-align: right;
}

.order-total span {
  color: #2B2D42;
  font-weight: 600;
  font-size: 16px;
}

/* Profile Form */
.profile-form {
  max-width: 600px;
}

.profile-form .form-group {
  margin-bottom: 20px;
}

.profile-form label {
  display: block;
  color: #2B2D42;
  font-weight: 500;
  margin-bottom: 8px;
}

.profile-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.profile-form .form-control:focus {
  border-color: #1E88E5;
  outline: none;
}

.form-actions {
  margin-top: 30px;
}

/* Settings Section */
.settings-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e4e7ed;
}

.settings-section:last-child {
  border-bottom: none;
}

.settings-section h3 {
  color: #2B2D42;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 6px;
}

.info-item label {
  color: #8D99AE;
  font-size: 14px;
  font-weight: 500;
}

.info-item span {
  color: #2B2D42;
  font-weight: 500;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.status-badge.active {
  background: #d4edda;
  color: #155724;
}

.status-badge.success {
  background: #d4edda;
  color: #155724;
}

/* Order Cards */
.orders-list {
  display: grid;
  gap: 20px;
}

.order-card {
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  overflow: hidden;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
}

.order-number strong {
  color: #2B2D42;
  font-size: 16px;
}

.order-date {
  display: block;
  color: #8D99AE;
  font-size: 14px;
  margin-top: 5px;
}

.order-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.order-total strong {
  color: #2B2D42;
  font-size: 18px;
}

.order-actions {
  display: flex;
  gap: 10px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state i {
  font-size: 60px;
  color: #e4e7ed;
  margin-bottom: 20px;
}

.empty-state h4 {
  color: #2B2D42;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.empty-state p {
  color: #8D99AE;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .account-sidebar {
    margin-bottom: 20px;
  }

  .account-content {
    padding: 20px;
  }

  .order-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .order-status {
    margin: 10px 0;
  }

  .order-total {
    text-align: left;
    margin-top: 10px;
  }

  .order-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .order-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-stats .col-md-3 {
    margin-bottom: 15px;
  }
}

/*=========================================================
	17 -> SHOPPING CART
==========================================================*/

.empty-cart {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 8px;
}

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

.empty-cart h3 {
  color: #2B2D42;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.empty-cart p {
  color: #8D99AE;
  margin-bottom: 30px;
}

.cart-table {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.cart-header {
  background: #f8f9fa;
  padding: 20px;
  border-bottom: 1px solid #e4e7ed;
}

.cart-header .row>div {
  font-weight: 600;
  color: #2B2D42;
  text-transform: uppercase;
  font-size: 14px;
}

.cart-body {
  padding: 0;
}

.cart-item {
  padding: 20px;
  border-bottom: 1px solid #e4e7ed;
  transition: background-color 0.2s;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item:hover {
  background: #f8f9fa;
}

.product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-image {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
}

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

.product-details h4 {
  color: #2B2D42;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.product-id {
  color: #8D99AE;
  font-size: 12px;
  margin-bottom: 5px;
}

.stock-warning {
  color: #dc3545;
  font-size: 12px;
  font-weight: 500;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-buttons {
  display: flex;
  align-items: center;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  overflow: hidden;
}

.btn-quantity {
  width: 32px;
  height: 32px;
  border: none;
  background: #f8f9fa;
  color: #6c757d;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-quantity:hover {
  background: #1E88E5;
  color: #fff;
}

.quantity-input {
  width: 50px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #2B2D42;
}

.quantity-input:focus {
  outline: none;
}

.product-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.item-total {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
}

.btn-remove {
  width: 32px;
  height: 32px;
  border: none;
  background: #f8d7da;
  color: #dc3545;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

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

.cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 0 0 8px 8px;
}

.cart-summary {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: sticky;
  top: 20px;
}

.cart-summary h3 {
  color: #2B2D42;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: #6c757d;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  padding-top: 15px;
  border-top: 2px solid #e4e7ed;
}

.summary-divider {
  height: 1px;
  background: #e4e7ed;
  margin: 20px 0;
}

.free-shipping {
  color: #28a745;
  font-weight: 600;
}

.shipping-notice {
  background: #e7f5ff;
  border: 1px solid #b3d7ff;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 15px;
}

.shipping-notice p {
  color: #0066cc;
  font-size: 12px;
  margin: 0;
}

.checkout-actions {
  margin-top: 20px;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
}

.btn-block {
  display: block;
  width: 100%;
}

.security-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e4e7ed;
}

.security-info h4 {
  color: #2B2D42;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.security-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-info li {
  color: #6c757d;
  font-size: 12px;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.security-info li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  min-width: 300px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .cart-header .row>div {
    font-size: 12px;
    padding: 5px;
  }

  .cart-item .row>div {
    margin-bottom: 15px;
  }

  .product-info {
    flex-direction: column;
    text-align: center;
  }

  .product-image {
    width: 60px;
    height: 60px;
  }

  .quantity-control {
    justify-content: flex-start;
  }

  .product-total {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .cart-actions {
    flex-direction: column;
    gap: 15px;
  }

  .cart-actions .btn {
    width: 100%;
  }

  .cart-summary {
    position: static;
    margin-top: 30px;
  }
}

/*=========================================================
	18 -> ADD TO CART BUTTONS
==========================================================*/

.add-to-cart-btn {
  background: #1E88E5;
  color: #fff;
  border: 2px solid #1E88E5;
  border-radius: 4px;
  padding: 8px 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background: #1565C0;
  border-color: #1565C0;
  transform: translateY(-2px);
}

.add-to-cart-btn:disabled {
  background: #6c757d;
  border-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

.add-to-cart-btn.added {
  background: #28a745;
  border-color: #28a745;
}

.cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  min-width: 300px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Login Page */
.login-form {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.login-subtitle {
  color: #8D99AE;
  font-size: 16px;
  margin-bottom: 30px;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  display: block;
  font-weight: 500;
  color: #2B2D42;
  margin-bottom: 8px;
}

.login-form .input-group {
  position: relative;
  display: flex;
}

.login-form .input-group-addon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #8D99AE;
  background: none;
  border: none;
  z-index: 10;
}

.login-form .form-control {
  padding-left: 45px;
  height: 50px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.2s;
}

.login-form .form-control:focus {
  border-color: #1E88E5;
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.checkbox-group {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #6c757d;
  position: relative;
  padding-left: 25px;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 3px;
  transition: 0.2s;
}

.checkbox-label:hover input~.checkmark {
  border-color: #1E88E5;
}

.checkbox-label input:checked~.checkmark {
  background-color: #1E88E5;
  border-color: #1E88E5;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input:checked~.checkmark:after {
  display: block;
}

.login-btn {
  width: 100%;
  padding: 15px;
  background: #1E88E5;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.login-btn:hover {
  background: #1565C0;
}

.form-links {
  text-align: center;
  margin-top: 20px;
}

.forgot-password {
  color: #1E88E5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.forgot-password:hover {
  color: #1565C0;
}

.social-login {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e4e7ed;
}

.social-title {
  text-align: center;
  color: #8D99AE;
  font-size: 14px;
  margin-bottom: 20px;
}

.social-buttons {
  display: flex;
  gap: 15px;
}

.social-btn {
  flex: 1;
  padding: 12px;
  border: 1px solid #e4e7ed;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
  border-color: #db4437;
  color: #db4437;
}

.facebook-btn:hover {
  border-color: #4267B2;
  color: #4267B2;
}

.new-customer {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  height: 100%;
}

.new-customer-subtitle {
  color: #8D99AE;
  font-size: 16px;
  margin-bottom: 30px;
}

.benefits-list {
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1E88E5, #1565C0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 20px;
  color: #fff;
}

.benefit-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 5px;
}

.benefit-text p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.create-account-cta {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e4e7ed;
}

.create-account-cta h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 10px;
}

.create-account-cta p {
  color: #8D99AE;
  font-size: 14px;
  margin-bottom: 20px;
}

.create-account-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #28a745;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.create-account-btn:hover {
  background: #218838;
  color: #fff;
}

/* Signup Page */
.signup-form {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.signup-subtitle {
  color: #8D99AE;
  font-size: 16px;
  margin-bottom: 30px;
}

.signup-form .form-group {
  margin-bottom: 20px;
}

.signup-form label {
  display: block;
  font-weight: 500;
  color: #2B2D42;
  margin-bottom: 8px;
}

.signup-form .form-control {
  height: 50px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  font-size: 14px;
  padding: 0 15px;
  transition: 0.2s;
}

.signup-form .form-control:focus {
  border-color: #1E88E5;
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.signup-form .input-group {
  position: relative;
  display: flex;
}

.signup-form .input-group-addon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #8D99AE;
  background: none;
  border: none;
  z-index: 10;
}

.signup-form .input-group .form-control {
  padding-left: 45px;
}

.password-strength {
  margin-top: 8px;
}

.strength-meter {
  width: 100%;
  height: 4px;
  background: #e4e7ed;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.strength-bar {
  height: 100%;
  width: 0;
  transition: width 0.3s, background-color 0.3s;
}

.strength-bar.weak {
  background: #dc3545;
}

.strength-bar.medium {
  background: #ffc107;
}

.strength-bar.strong {
  background: #28a745;
}

.strength-text {
  font-size: 12px;
  color: #8D99AE;
}

.signup-btn {
  width: 100%;
  padding: 15px;
  background: #1E88E5;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.signup-btn:hover {
  background: #1565C0;
}

.social-signup {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e4e7ed;
}

.signup-benefits {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  height: 100%;
}

.benefits-subtitle {
  color: #8D99AE;
  font-size: 16px;
  margin-bottom: 30px;
}

.existing-account {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e4e7ed;
}

.existing-account h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2B2D42;
  margin-bottom: 10px;
}

.existing-account p {
  color: #8D99AE;
  font-size: 14px;
  margin-bottom: 20px;
}

.existing-account .login-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #1E88E5;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.existing-account .login-btn:hover {
  background: #1565C0;
  color: #fff;
}

@media (max-width: 768px) {
  .login-form,
  .signup-form {
    padding: 25px;
  }

  .new-customer,
  .signup-benefits {
    padding: 25px;
    margin-bottom: 20px;
  }

  .social-buttons {
    flex-direction: column;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

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

}