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

Colors:
  Body 		: #333
  Headers 	: #2B2D42
  Primary 	: #aa5114
  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
===========================================================*/

/*----------------------------*\
  Typography
\*----------------------------*/

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

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: #aa5114;
  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: #aa5114;
  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"] {
  appearance: textfield;
  -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: #aa5114;
}

/*-- 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: '✔';
  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: #aa5114;
  border-color: #aa5114;
}

.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: #aa5114;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

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

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

/*=========================================================
  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: #aa5114;
}

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

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

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

#header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.header-logo {
  flex-shrink: 0;
}

/* Logo image size fix */
.header-logo .logo img {
  display: block;
  max-width: 180px;
  height: auto;
}

.header-ctn-wrapper {
  flex-shrink: 0;
}

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

.header-search {
  padding: 20px 0;
  flex: 1;
  max-width: 600px;
  min-width: 300px;
}

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

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

.header-search form .input {
  flex: 1;
  margin-right: -4px;
  min-width: 200px;
}

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

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

.header-ctn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0;
  gap: 15px;
  flex-shrink: 0;
  min-width: 300px;
}

.header-ctn > div {
  display: flex;
  align-items: center;
  height: 40px;
}

.header-ctn>div>a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  color: #FFF;
  text-align: center;
  box-sizing: border-box;
  flex-direction: column;
  width: 90px;
  position: relative;
}

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

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

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

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

#navigation {
  background: #FFF;
  border-bottom: 2px solid #E4E7ED;
  border-top: 3px solid #ffd204;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(170,81,20,0.07);
  position: relative;
  left: 0;
  top: 0;
  transition: box-shadow 0.2s, position 0.2s;
}

#navigation.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(170,81,20,0.13);
}

body.navbar-is-fixed {
  padding-top: 74px;
}

/*----------------------------*\
  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: #ffd204;
  background-color: transparent;
}

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

/*----------------------------*\
  Header Responsive Styles
\*----------------------------*/

/* Tablet and below */
@media only screen and (max-width: 991px) {
  .header-flex-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .header-logo {
    order: 1;
  }
  
  .header-ctn-wrapper {
    order: 2;
  }
  
  .header-search {
    order: 3;
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
  
  .header-ctn {
    justify-content: center;
    min-width: auto;
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  #header {
    padding: 15px 0;
  }
  
  .header-flex-container {
    gap: 15px;
  }
  
  .header-search form {
    flex-direction: column;
    gap: 10px;
  }
  
  .header-search form .input-select {
    width: 100%;
    border-radius: 40px;
    margin-right: 0;
  }
  
  .header-search form .input {
    width: 100%;
    margin-right: 0;
    border-radius: 40px;
  }
  
  .header-search form .search-btn {
    width: 100%;
    border-radius: 40px;
  }
  
  .header-ctn {
    gap: 10px;
  }
  
  .header-ctn > div > a {
    width: 80px;
    padding: 0 8px;
  }
  
  .header-ctn > div > a > span {
    font-size: 11px;
  }
  
  .header-logo .logo img {
    max-width: 150px;
  }
}

/* Small Mobile */
@media only screen and (max-width: 480px) {
  #header {
    padding: 10px 0;
  }
  
  .header-flex-container {
    gap: 10px;
  }
  
  .header-ctn {
    justify-content: space-around;
    width: 100%;
    gap: 8px;
  }
  
  .header-ctn > div > a {
    width: 70px;
    padding: 0 5px;
  }
  
  .header-ctn > div > a > i {
    font-size: 16px;
  }
  
  .header-ctn > div > a > span {
    font-size: 9px;
  }
  
  .header-logo .logo img {
    max-width: 120px;
  }
}

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

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

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: #ffd204;
  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: #ffd204;
  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;
}

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

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

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

.shop .shop-body h3 {
  color: #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/hotdeal.png');
  background-position: center;
  background-repeat: no-repeat;
}

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

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

/*----------------------------*\
  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;
}

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

.product .product-img {
  position: relative;
}

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

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

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

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

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

.product .product-body .product-price {
  color: #aa5114;
  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: #ef233c;
}

.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: #aa5114;
  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;
  background: #1e1f29;
  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%);
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ef233c;
  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: #aa5114;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #aa5114;
  border-color: #aa5114;
  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: #aa5114;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- checkbox Filter --*/

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

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

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

/*-- Price Filter --*/

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

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

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

.noUi-horizontal {
  height: 6px;
}

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

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

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

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

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

/*-- Store Sort --*/

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

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

/*-- Store Grid --*/

.store-grid {
  float: right;
}

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

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

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

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

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

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

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

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

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

.store-pagination li.active {
  background-color: #aa5114;
  border-color: #aa5114;
  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 view
\*----------------------------*/

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

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

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

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

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

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

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

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

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

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

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

.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: #ef233c;
  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: #aa5114;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #aa5114;
  border-color: #aa5114;
  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: #aa5114;
}

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

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

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

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

/*=========================================================
  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: #aa5114;
}

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

/*=========================================================
  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: #aa5114;
  width: 14px;
  text-align: center;
}

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

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

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

.footer-payments li a {
  color: #15161D;
  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: #aa5114;
  border-color: #aa5114;
}

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

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

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

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

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

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

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

/* =========================
   Neon Card Section (Fikir)
   ========================= */
.hizmetler-section {
  background: #f5f5f5;
  border-radius: 0;
  box-shadow: none;
  border: none;
  padding: 64px 0 56px 0;
  margin-bottom: 0px;
  position: relative;
  overflow: visible;
}
.hizmetler-section:before,
.hizmetler-section:after {
  display: none;
}
.hizmetler-section .section-title {
  background: none;
  box-shadow: none;
  color: #ffd204;
  font-size: 2.3rem;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow: none;
}
.hizmetler-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px 32px;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}
.hizmet-card {
  background: #181818;
  border-radius: 22px;
  box-shadow: 0 0 0 6px #aa5114, 0 0 32px 0 #e6b07a, 0 2px 24px 0 rgba(170,81,20,0.13);
  border: none;
  padding: 38px 28px 32px 28px;
  min-width: 0;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.22s, background 0.22s;
  position: relative;
  overflow: hidden;
}
.hizmet-card:before {
  display: none;
}
.hizmet-card:hover {
  box-shadow: 0 0 0 10px #e6b07a, 0 0 48px 0 #aa5114, 0 8px 40px 0 rgba(170,81,20,0.22);
  transform: translateY(-8px) scale(1.035);
  background: #222;
}
.hizmet-card h3 {
  color: #fff7f0;
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px #aa5114;
}
.hizmet-card p {
  color: #e6b07a;
  font-size: 1.05rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 4px #aa5114;
}
.hizmet-card .icon {
  font-size: 2.4rem;
  color: #e6b07a;
  margin-bottom: 18px;
  display: block;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 12px #aa5114;
}
@media (max-width: 991px) {
  .hizmetler-list {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
  }
  .hizmet-card {
    max-width: 98vw;
    min-width: 0;
  }
  .hizmetler-section {
    padding: 32px 0 28px 0;
  }
}

/* ==========================================================================
   PROFILE PAGE STYLES
   ========================================================================== */

/* Profile Sidebar */
.profile-sidebar {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
	padding: 15px;
	margin-bottom: 30px;
}

.profile-avatar-section {
	text-align: center;
	padding: 30px 20px 25px;
	border-bottom: 1px solid #eee;
	background: linear-gradient(135deg, #e6b07a 0%, #d99a4a 100%);
	border-radius: 8px 8px 8px 8px;
	color: #fff;
}

.profile-avatar {
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
}

.profile-avatar img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 4px solid rgba(255,255,255,0.3);
	object-fit: cover;
}

.avatar-upload {
	position: absolute;
	bottom: 0;
	right: 0;
}

.avatar-upload-btn {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #fff;
	color: #e6b07a;
	border: none;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.avatar-upload-btn:hover {
	background: #f8f8f8;
	transform: scale(1.05);
}

.profile-name {
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 5px 0;
	color: #fff;
}

.profile-email {
	font-size: 14px;
	margin: 0 0 10px 0;
	opacity: 0.9;
}

.profile-status {
	background: rgba(255,255,255,0.2);
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 500;
}

.profile-nav {
	padding: 0;
}

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

.profile-nav li {
	border-bottom: 1px solid #f0f0f0;
}

.profile-nav li:last-child {
	border-bottom: none;
}

.profile-nav a {
	display: block;
	padding: 15px 20px;
	color: #666;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 500;
}

.profile-nav a:hover {
	background: #f8f8f8;
	color: #e6b07a;
}

.profile-nav li.active a {
	background: #e6b07a;
	color: #fff;
	border-left: 4px solid #d99a4a;
}

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

/* Profile Content */
.profile-content {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
	padding: 0;
}

.profile-tab {
	display: none;
	padding: 30px;
}

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

.profile-section-header {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
}

.profile-section-header h2 {
	color: #333;
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.profile-section-header p {
	color: #666;
	font-size: 16px;
	margin: 0;
}

.profile-section-header i {
	color: #e6b07a;
	margin-right: 10px;
}

/* Profile Forms */
.profile-form .form-group {
	margin-bottom: 20px;
}

.profile-form label {
	color: #333;
	font-weight: 600;
	margin-bottom: 8px;
	display: block;
}

.profile-form .form-control {
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	padding: 12px 15px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.profile-form .form-control:focus {
	border-color: #e6b07a;
	box-shadow: 0 0 0 3px rgba(230, 176, 122, 0.1);
}

.profile-btn-primary {
	background: #e6b07a;
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.profile-btn-primary:hover {
	background: #d99a4a;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(230, 176, 122, 0.3);
}

/* Orders Section */
.orders-filter {
	margin-bottom: 25px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-btn {
	padding: 8px 16px;
	border: 2px solid #e0e0e0;
	background: #fff;
	color: #666;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
	border-color: #e6b07a;
	background: #e6b07a;
	color: #fff;
}

.order-item {
	border: 2px solid #f0f0f0;
	border-radius: 8px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.order-item:hover {
	border-color: #e6b07a;
	box-shadow: 0 4px 15px rgba(230, 176, 122, 0.1);
}

.order-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: #f8f8f8;
	border-radius: 6px 6px 0 0;
}

.order-info h4 {
	margin: 0 0 5px 0;
	color: #333;
	font-weight: 600;
}

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

.order-status {
	padding: 6px 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;
}

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

.status-cancelled {
	background: #e2e3e5;
	color: #383d41;
}

.order-details {
	padding: 20px;
}

.product-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.product-item img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
	margin-right: 15px;
}

.product-info {
	flex: 1;
}

.product-info h5 {
	margin: 0 0 5px 0;
	color: #333;
	font-weight: 600;
}

.product-info p {
	margin: 0;
	color: #666;
	font-size: 14px;
}

.product-price {
	color: #e6b07a;
	font-weight: 600;
	font-size: 16px;
}

.order-actions {
	margin-top: 15px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.btn-outline {
	border: 2px solid #e0e0e0;
	background: #fff;
	color: #666;
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
}

.btn-outline:hover {
	border-color: #e6b07a;
	color: #e6b07a;
}

/* Addresses Section */
.addresses-actions {
	margin-bottom: 25px;
}

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

.address-card {
	border: 2px solid #f0f0f0;
	border-radius: 8px;
	padding: 20px;
	transition: all 0.3s ease;
}

.address-card:hover {
	border-color: #e6b07a;
	box-shadow: 0 4px 15px rgba(230, 176, 122, 0.1);
}

.address-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 15px;
}

.address-header h4 {
	margin: 0;
	color: #333;
	font-weight: 600;
}

.address-badges {
	display: flex;
	gap: 5px;
	flex-direction: column;
	align-items: flex-end;
}

.badge {
	padding: 3px 8px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.badge-primary {
	background: #e6b07a;
	color: #fff;
}

.badge-success {
	background: #28a745;
	color: #fff;
}

.badge-info {
	background: #17a2b8;
	color: #fff;
}

.address-info p {
	margin: 0 0 5px 0;
	color: #666;
	line-height: 1.4;
}

.address-info strong {
	color: #333;
}

.address-actions {
	margin-top: 15px;
	display: flex;
	gap: 10px;
}

.btn-sm {
	padding: 6px 12px;
	font-size: 12px;
}

/* Favorites Section */
.favorites-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.favorite-item {
	border: 2px solid #f0f0f0;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.favorite-item:hover {
	border-color: #e6b07a;
	box-shadow: 0 4px 15px rgba(230, 176, 122, 0.1);
}

.favorite-image {
	position: relative;
	height: 180px;
	overflow: hidden;
}

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

.remove-favorite {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(0,0,0,0.7);
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease;
}

.remove-favorite:hover {
	background: #dc3545;
}

.favorite-info {
	padding: 20px;
}

.favorite-info h4 {
	margin: 0 0 8px 0;
	color: #333;
	font-weight: 600;
}

.favorite-info p {
	margin: 0 0 10px 0;
	color: #666;
	font-size: 14px;
}

.favorite-price {
	color: #e6b07a;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 15px;
}

/* Notifications Section */
.notification-settings {
	margin-bottom: 40px;
}

.notification-settings h3 {
	color: #333;
	margin-bottom: 20px;
	font-weight: 600;
}

.notification-option {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 0;
	border-bottom: 1px solid #f0f0f0;
}

.notification-option:last-child {
	border-bottom: none;
}

.option-info {
	flex: 1;
}

.option-info h4 {
	margin: 0 0 5px 0;
	color: #333;
	font-weight: 600;
	font-size: 16px;
}

.option-info p {
	margin: 0;
	color: #666;
	font-size: 14px;
}

/* Toggle Switch */
.switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 24px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

input:checked + .slider {
	background-color: #e6b07a;
}

input:checked + .slider:before {
	transform: translateX(26px);
}

/* Recent Notifications */
.recent-notifications h3 {
	color: #333;
	margin-bottom: 20px;
	font-weight: 600;
}

.notification-list {
	max-height: 400px;
	overflow-y: auto;
}

.notification-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 15px;
	border: 1px solid #f0f0f0;
	border-radius: 8px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.notification-item.unread {
	background: #f8f9fa;
	border-color: #e6b07a;
}

.notification-item:hover {
	background: #f8f8f8;
}

.notification-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e6b07a;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	flex-shrink: 0;
}

.notification-content {
	flex: 1;
}

.notification-content h4 {
	margin: 0 0 5px 0;
	color: #333;
	font-weight: 600;
	font-size: 16px;
}

.notification-content p {
	margin: 0 0 5px 0;
	color: #666;
	font-size: 14px;
}

.notification-time {
	color: #999;
	font-size: 12px;
}

/* Security Section */
.security-section {
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid #f0f0f0;
}

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

.security-section h3 {
	color: #333;
	margin-bottom: 20px;
	font-weight: 600;
}

.password-form .form-text {
	color: #666;
	font-size: 12px;
	margin-top: 5px;
}

.two-factor-setting {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
	border-bottom: 1px solid #f0f0f0;
}

.two-factor-setting:last-child {
	border-bottom: none;
}

.setting-info h4 {
	margin: 0 0 5px 0;
	color: #333;
	font-weight: 600;
	font-size: 16px;
}

.setting-info p {
	margin: 0;
	color: #666;
	font-size: 14px;
}

.session-list {
	margin-bottom: 20px;
}

.session-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	border: 1px solid #f0f0f0;
	border-radius: 8px;
	margin-bottom: 10px;
}

.session-item.current {
	background: #f8f9fa;
	border-color: #e6b07a;
}

.session-info {
	flex: 1;
}

.session-device {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 5px;
}

.session-device i {
	color: #e6b07a;
	font-size: 18px;
}

.session-device span {
	color: #333;
	font-weight: 600;
}

.session-details {
	display: flex;
	gap: 15px;
	font-size: 14px;
	color: #666;
}

.session-badge {
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.current-session {
	background: #e6b07a;
	color: #fff;
}

/* Support Section */
.support-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.support-option {
	border: 2px solid #f0f0f0;
	border-radius: 8px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
}

.support-option:hover {
	border-color: #e6b07a;
	box-shadow: 0 4px 15px rgba(230, 176, 122, 0.1);
}

.support-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #e6b07a;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	margin: 0 auto 15px;
}

.support-content h3 {
	margin: 0 0 10px 0;
	color: #333;
	font-weight: 600;
}

.support-content p {
	margin: 0 0 15px 0;
	color: #666;
}

/* FAQ Section */
.faq-section h3 {
	color: #333;
	margin-bottom: 20px;
	font-weight: 600;
}

.faq-item {
	border: 1px solid #f0f0f0;
	border-radius: 8px;
	margin-bottom: 10px;
	overflow: hidden;
}

.faq-question {
	padding: 15px 20px;
	background: #f8f8f8;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #f0f0f0;
}

.faq-question h4 {
	margin: 0;
	color: #333;
	font-weight: 600;
	font-size: 16px;
}

.faq-question i {
	color: #e6b07a;
	transition: transform 0.3s ease;
}

.faq-answer {
	padding: 15px 20px;
	background: #fff;
	display: none;
}

.faq-answer p {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
	.profile-sidebar {
		margin-bottom: 20px;
	}
	
	.profile-avatar-section {
		padding: 20px 15px 20px;
	}
	
	.profile-avatar img {
		width: 100px;
		height: 100px;
	}
	
	.profile-name {
		font-size: 20px;
	}
	
	.profile-tab {
		padding: 20px 15px;
	}
	
	.profile-section-header h2 {
		font-size: 24px;
	}
	
	.orders-filter {
		justify-content: center;
	}
	
	.order-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.product-item {
		flex-direction: column;
		text-align: center;
	}
	
	.product-item img {
		margin: 0 0 10px 0;
	}
	
	.addresses-grid {
		grid-template-columns: 1fr;
	}
	
	.favorites-grid {
		grid-template-columns: 1fr;
	}
	
	.support-options {
		grid-template-columns: 1fr;
	}
	
	.session-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.notification-option {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

/* MAIN LAYOUT CONTAINERS */
#main-app-container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#main-header-wrap {
	/* Header ve navigation için */
	flex-shrink: 0;
	z-index: 1000;
	position: relative;
}

#breadcrumb-container {
	/* Breadcrumb için */
	flex-shrink: 0;
}

#page-content {
	/* Ana sayfa içeriği */
	flex: 1;
	min-height: 0;
}

#footer-container {
	/* Footer için */
	flex-shrink: 0;
	margin-top: auto;
}

/* Responsive header yönetimi */
@media (max-width: 991px) {
	#main-header-wrap {
		position: relative;
	}
}

/* Ana container içindeki elementler için temizlik */
#main-app-container .section {
	margin-bottom: 0;
}

#main-app-container .section:last-child {
	margin-bottom: 0;
}

/* Layout loading durumu için */
.layout-loading {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.layout-loaded {
	opacity: 1;
}

/* Modern Date Input Styling */
.date-input-wrapper {
	position: relative;
	display: block;
}

.date-input-wrapper input[type="date"] {
	width: 100%;
	padding: 12px 45px 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	background-color: #fff;
	transition: all 0.3s ease;
	color: #333;
	cursor: pointer;
	min-height: 46px;
	box-sizing: border-box;
}

.date-input-wrapper input[type="date"]:focus {
	border-color: #e6b07a;
	box-shadow: 0 0 0 3px rgba(230, 176, 122, 0.1);
	outline: none;
}

.date-input-wrapper input[type="date"]:hover {
	border-color: #d0d0d0;
}

.date-input-wrapper::after {
	content: "\f073";
	font-family: "FontAwesome";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	pointer-events: none;
	font-size: 16px;
}

.date-input-wrapper input[type="date"]:focus + .date-input-wrapper::after,
.date-input-wrapper:hover::after {
	color: #e6b07a;
}

/* Hide the default date picker icon */
.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0;
	cursor: pointer;
	position: absolute;
	right: 0;
	width: 40px;
	height: 100%;
}

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

/* Firefox date input styling */
.date-input-wrapper input[type="date"]::-moz-focus-inner {
	border: 0;
}

/* When date is selected, make text darker */
.date-input-wrapper input[type="date"]:valid {
	color: #333;
}

/* Placeholder-like styling when no date is selected */
.date-input-wrapper input[type="date"]:invalid {
	color: #999;
}

.profile-form .form-control:focus {
	border-color: #e6b07a;
	box-shadow: 0 0 0 3px rgba(230, 176, 122, 0.1);
}

/* Responsive design for date input */
@media (max-width: 768px) {
	.date-input-wrapper input[type="date"] {
		font-size: 16px; /* Prevent iOS zoom */
		padding: 14px 45px 14px 15px;
	}
}
