@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700&display=swap');
/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

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

Fonts: Montserrat

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  color: #2B2D42;
  font-weight: 700;
  margin: 0 0 10px;
  
}
.h3, h3 {
  font-size: 22px;
}
a {
  color: #2B2D42;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: #D10024;
  text-decoration: none;
  outline: none;
}
.alert{
  margin-top: 5px;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}
.fa-icon{
  padding-right: 5px;
}
#column-left, #column-right{
  margin-top: 15px;
}
.panel{
  border-radius: 0;
}
legend{
  font-size: 18px;
}
/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #D10024;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: capitalize;
  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: #D10024;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #E4E7ED;
  height: 35px;
}

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

.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;
}
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 20px;
  padding-bottom: 20px;
}

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

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

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

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

.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: 10px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 20px;
}

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

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

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

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

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

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

#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
   background-color: #000000; /* <-- Новый цвет */
  border-bottom: 1px solid #222; /* Тонкая линия снизу для стиля */
}

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

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

.header-links li a {
  color: #FFF;
}

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

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

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

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

.header-logo {
  float: left;
}

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

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

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

.header-search {
  position: relative;
}

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

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

.header-search .search-btn {
  height: 40px;
  width: 100px;
  background: #D10024;
  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: #D10024;
}

.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: #D10024;
  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 #D10024;
  margin-bottom: 0px;
}

/*----------------------------*\
  Top nav
\*----------------------------*/
.dropdown-menu.account li{
   display: block;
   padding: 3px;
}
.dropdown-menu.account li a{
    color:#2B2D42;
    font-weight:600;
}
.dropdown-menu.account li a:hover{
    color:#D10024;
    background: transparent;
}

.dropdown-menu.currency li{
   display: block;
   padding: 3px;
}
.dropdown-menu.currency li a{
    color:#2B2D42;
    font-weight:600;
    cursor: pointer;
}
.dropdown-menu.currency li a:hover{
    color:#D10024;
    background: transparent;
}
/*----------------------------*\
  Cart
\*----------------------------*/
.img-thumbnail-product-cart {
  display: inline-block;
  max-width: 150px;
  height: 50px;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  height: 50px;
  padding: 4px;
}
/*.cart-dropdown-btn{
  margin: 0px -17px -17px;
}
.cart-dropdown-btn > a:first-child {
  margin-right: -4px;
  background-color: #1e1f29;
}
.cart-dropdown-btn > a {
  width: calc(50% - 0px);
  padding: 12px;
  background-color: #D10024;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}*/
.cart-dropdown-btn{
  padding: 10px 10px 20px 30px;
}
.cart-dropdown-btn a{
  background: #D10024;
  padding: 10px;
  color: #FFF;
}
.btn-show-cart{
 
  color: #FFF;
  background: #D10024;

}


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

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

.main-nav>li>a {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 15px;
}

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

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #D10024;
  -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 .dropdown-inner a {
  min-width: 160px;
  display: block;
  padding: 3px 20px;
  clear: both;
  line-height: 20px;
  color: #333;
  font-size: 13px;
}
#responsive-nav .see-all {
  display: block;
  margin-top: .5em;
  border-top: 1px solid #ddd;
  padding: 3px 20px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 3px 3px;
  font-size: 13px;
}
.dropdown:hover .dropdown-menu {
    display: block;
  }
#responsive-nav .dropdown-inner a:hover{
  color: #D10024;
  text-decoration: none;
  outline: none;
}
.btn-cart-icon{
  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: #222d32;
    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;
  }
  .navbar-nav .open .dropdown-menu{
    background: #2c3b41;
    
  }
  #responsive-nav .dropdown-inner a{
    color: #fff;
  }
   #responsive-nav .dropdown-inner a:hover{
    color: #D10024;
  }
  #responsive-nav .see-all{
    color: #fff;
  }
   #responsive-nav .see-all:hover{
    color: #D10024;
  }
  #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;
  }
  .main-nav>li>a:hover{
    color: #D10024;
  }
}

/*=========================================================
	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: #D10024;
  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: #D10024;
  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: #D10024e6;
  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 #D10024;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #D10024;
}

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


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

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

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

.product .product-body .product-category {
  font-size: 13px;
  color: #8D99AE;
}

.product .product-body .product-name {
  font-size: 15px;
  text-align: left;
  height: 35px;
  overflow: hidden;
}
.product-rating .fa-stack {
  font-size: 8px;
}
.product-rating .fa-star-o {
  color: #999;
  font-size: 13px;
}
.product-rating .fa-star {
  color: #FC0;
  font-size: 13px;
}
.product-rating .fa-star + .fa-star-o {
  color: #FC0;
}
.product .product-body .product-name>a {
  font-weight: 600;
}
.product-rating span{
  background: #fff;
  position: relative;
  z-index: 10;
}
.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #D10024;
}

.product .product-body .product-price {
  color: #D10024;
  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: #D10024;
  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: capitalize;
  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: capitalize;
  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: #D10024;
  opacity: 0;
  visibility: hidden;
}

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

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

/* Brands & iPhone Banner */
.carousel.swiper-viewport, 
#carousel0, 
.carousel0,
.swiper-pagination.carousel0 {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.iphone-parallax-section {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('/image/catalog/iphone16_parallax.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    margin-bottom: 50px;
}

.iphone-parallax-section .caption h2 {
    font-size: 48px !important;
    font-weight: 700 !important;
    margin-bottom: 40px !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8) !important;
    color: #fff !important;
    text-transform: uppercase;
    font-family: 'Exo 2', sans-serif !important;
}

.iphone-parallax-section .link {
    display: inline-block !important;
    padding: 18px 60px !important;
    background-color: #2388d9 !important;
    color: #fff !important;
    border-radius: 35px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    transition: 0.3s all !important;
    font-family: 'Exo 2', sans-serif !important;
}

.iphone-parallax-section .link:hover {
    background-color: #ff6949 !important;
    transform: scale(1.05) !important;
}

@media (max-width: 991px) {
    .iphone-banner {
        padding: 100px 0;
    }
    .iphone-banner h2 {
        font-size: 36px !important;
    }
}

@media (max-width: 767px) {
    .iphone-banner {
        padding: 80px 20px;
    }
    .iphone-banner h2 {
        font-size: 26px !important;
        margin-bottom: 30px !important;
    }
    .btn-iphone-16 {
        padding: 14px 40px !important;
        font-size: 13px !important;
    }
}

/*----------------------------*\
	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: capitalize;
  font-size: 10px;
  color: #8D99AE;
}

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

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

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

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

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

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

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background-color: #dc3545;
  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: 16px;
  margin: 20px 0px 20px;
  background: #f5f5f5;
  padding: 12px 12px 12px 20px;
  color: #333;
  font-weight: 600;
}

/*-- checkbox Filter --*/

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

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

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

/*-- Price Filter --*/

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

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

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

.noUi-horizontal {
  height: 6px;
}

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

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

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

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

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}
#compare-total{
  text-transform: capitalize;
}
/*-- 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 .btn-view{
  padding: 8px 12px;
  box-shadow: none;
  border-radius: 0;
  line-height: 1.3;
}
.store-grid .active{
  background-color: #D10024;
  border-color: #D10024;
  color: #FFF;
  cursor: default;
}
.store-grid .btn-view:hover{
   background-color: #E4E7ED;
   color: #D10024;
}
.product-list .product .add-to-cart{
  position: inherit;
  background: transparent;
}
.product-list .product .product-body .product-price{
  text-align: left;
}
.product-list .product .product-body .product-desc{
  text-align: left;
  margin-block: 15px;
}
.product-list .product .product-body .product-category{
  text-align: left;
}
.product-grid .product .product-body .product-desc{
  display: none;

}
.product-list .product:hover .add-to-cart {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

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

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

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

.store-grid li a {
  display: block;
}
.module-filter{
  text-transform: uppercase;
  font-weight: bold;
}
/*-- Store Pagination --*/
.section-pagination{
  margin-top: 50px;
}
.store-pagination {
  float: right;
}

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

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

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

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

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

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

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	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 img{
  width: 50%;
}
#product-imgs .product-preview.slick-current {
  border-color: #D10024;
}

#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: capitalize;
  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: #D10024;
}
.product-details .product-rating .fa-stack {
  font-size: 8px;
}
.product-details .product-rating .fa-star-o {
  font-size: 13px;
}
.product-details .product-rating .fa-star {
  color: #FC0;
  font-size: 13px;
}


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

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

.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: #5cb85c;
}
.product-details .product-unvailable {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #D10024;
}

.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-btns .btn-wishlist{
  font-size: 12px;
}
.product-btns .btn-compare{
  font-size: 12px;
}
.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: #D10024;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #D10024;
  border-color: #D10024;
  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: capitalize;
  font-size: 13px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}
.review-rating>i {
  color: #E4E7ED;
}
.review-rating>i.fa-star {
  color: #D10024;
}
.review-rating .fa-stack {
  font-size: 8px;
}
.review-rating .fa-star-o {
  font-size: 13px;
}
.review-rating .fa-star {
  color: #FC0;
  font-size: 13px;
}
.review-rating .fa-star + .fa-star-o {
  color: #FC0;
}
.review-rating .fa-star-o {
  color: #999;
  font-size: 13px;
}
/*----------------------------*\
	 Product tab
\*----------------------------*/

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

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

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

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

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

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

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

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

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

/*-- Rating --*/

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

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

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

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

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

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

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

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

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

/*-- Reviews --*/

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Review Form --*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#newsletter.section {
  border-top: 2px solid #E4E7ED;
  border-bottom: 3px solid #D10024;
  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: #D10024;
  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: #D10024;
}

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

.footer-links li a:hover {
  color: #D10024;
}
.footer-social{
  display: flex;
  margin-top: 20px;
}
.footer-social li{
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
.footer-social li a {
  color: #fff;
  background: #005379 none repeat scroll 0 0;
  border-radius: 2px;
  color: #fff;
  display: block;
  font-size: 15px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  width: 30px;
}
.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: #D10024;
  border-color: #D10024;
}

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

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}
/* CSS Document */
.swiper-viewport {
  margin: 0;
  background: #fff;
  z-index: 1;
  border: 4px solid #fff;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  width: 100%;
  position: relative;
  overflow: visible;
}
/* OpenCart Code */
.swiper-container {
  direction: ltr !important;
}
.swiper-pager {
  width: 100%;
  position: absolute;
  top: 50%;
  line-height: 45px;
}
.swiper-button-prev, .swiper-button-next {
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  transition: all .3s ease;
  z-index: 2;
  background-image: none;
}
.swiper-viewport .swiper-button-prev {
  opacity: 0.7;
  left: 10px;
}
.swiper-viewport .swiper-button-next {
  opacity: 0.7;
  right: 10px;
  
}
/* Desktop */
@media (min-width: 768px){
.swiper-viewport .swiper-button-prev {
  opacity: 0;
  left: -20px;
}
.swiper-viewport .swiper-button-next {
  opacity: 0;
  right: -20px;
}
.swiper-viewport:hover .swiper-button-prev {
  opacity: 0.7;
  left: 10px;

}
.swiper-viewport:hover .swiper-button-next {
  opacity: 0.7;
  right: 10px;
}
}
.swiper-button-prev:before {
  width: 40px;
    height: 40px;
  font-family: FontAwesome;
  content: "\f053"; 
  color: rgba(0,0,0,0.8);
  font-size: 40px;
}
.swiper-button-next:before {
  width: 40px;
    height: 40px;
  font-family: FontAwesome;
  content: "\f054"; 
  color: rgba(0,0,0,0.8);
  font-size: 40px;
}
.swiper-pagination {
  bottom: -40px;
  left: 0;
  text-align: center;
  width: 100%;
}
.swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
  margin: 0 5px;
  opacity: 1;
}
.swiper-pagination-bullet:hover {
  background: rgba(0, 0, 0, 0.7);
}
.swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.9);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    cursor: pointer;
    pointer-events: auto;
}

/*=========================================================
	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;
  }
  .btn-cart-icon{
    display: inline-block;
  }
  .header-search{
    display: none;
  }
  .header-ctn{
    float: none;
  }
  .header-ctn .menu-toggle{
   float: right;
    margin-top: -35px;
    padding-left: 25px;
  }
}
/* =========================================
   IPITAKA FINAL MASTER CSS (DO NOT EDIT)
   ========================================= */

/* 1. ШРИФТ И ГЛОБАЛЬНЫЙ ФОН */

#ipitaka-main-container {
    margin-top: 20px;
}

body, html {
    background-color: #ffffff !important;
    color: #333333 !important;
    font-family: 'Exo 2', sans-serif !important;
    height: 100%;
}

/* ЗАГОЛОВКИ СЕКЦИЙ (РЕКОМЕНДУЕМЫЕ и т.д.) */
.section-title .title {
    color: #333 !important;
    font-family: 'Exo 2', sans-serif !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    font-size: 32px !important;
    letter-spacing: 2px !important;
    margin-bottom: 40px !important;
}

/* 2. ШАПКА (Убиваем все белые фоны) */
header {
    background-color: #000000 !important;
    border-bottom: 1px solid #222 !important;
    padding: 0 !important;
    position: relative;
    z-index: 1000;
}
header #navigation, 
header .navbar, 
header .main-nav,
.menu-block {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

/* 3. ГЛАВНОЕ МЕНЮ (В одну линию) */
.ipitaka-inline-menu {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.ipitaka-inline-menu > li {
    position: static !important; /* Важно для мега-меню */
    background: transparent !important;
}
.ipitaka-inline-menu > li > a {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 30px 15px !important;
    background: transparent !important;
    text-decoration: none !important;
    font-family: 'Exo 2', sans-serif !important;
}
.ipitaka-inline-menu > li > a:hover, 
.ipitaka-inline-menu > li.open > a,
.nav .open > a, 
.nav .open > a:hover, 
.nav .open > a:focus {
    background-color: #181818 !important; 
    color: #ffffff !important;
    border-color: transparent !important;
}

/* 4. ВЫПАДАЮЩЕЕ МЕГА-МЕНЮ */
.ipitaka-megamenu {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: 100% !important;
    margin-top: 0 !important;
    background-color: #111111 !important;
    border: none !important;
    border-top: 1px solid #333 !important;
    padding: 30px 0 !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9) !important;
    border-radius: 0 !important;
}
.ipitaka-megamenu .container {
    display: flex !important;
    justify-content: center !important;
}
.ipitaka-megamenu .dropdown-inner {
    width: 100%;
    max-width: 900px;
}

/* 5. КОЛОНКИ В МЕНЮ (Слева ссылки, справа фото) */
.menu-links-col {
    display: flex !important;
    justify-content: flex-end !important;
    padding-right: 40px !important;
    border-right: 1px solid #333;
}
.menu-links-col ul {
    width: 100%;
    max-width: 350px;
    text-align: left;
}
.menu-links-col ul li a {
    color: #cccccc !important;
    font-size: 15px !important;
    padding: 8px 0 !important;
    display: inline-block !important;
    text-transform: none !important;
    text-decoration: none !important;
    transition: all 0.2s;
}
.menu-links-col ul li a:hover {
    color: #ffffff !important;
    padding-left: 5px !important;
}

.menu-image-col {
    text-align: left !important;
    padding-left: 40px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-img-wrap {
    height: auto !important;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-img-wrap img {
    max-width: 200px !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}
.menu-img-title {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
    text-align: center;
}
.menu-img-desc {
    color: #888;
    font-size: 13px;
    text-align: center;
}

/* 6. ПОИСК И КОРЗИНА */
.search-icon-block a:hover i { color: #ccc !important; }
#cart > .btn {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 18px !important;
    padding: 0 !important;
    margin-left: 15px !important;
    box-shadow: none !important;
}
#cart-total { display: none !important; }

/* 7. ФУТЕР */
footer {
    background-color: #ffffff !important;
    color: #666666 !important;
    border-top: none !important;
    margin-bottom: 0 !important;
}

/* 8. VIDEO BANNER */
.top-video-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}
.top-video-banner .video-container {
    position: relative;
    width: 100%;
    height: 944px;
}
@media (max-width: 991px) {
    .top-video-banner .video-container {
        height: auto;
    }
}
.top-video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-video-banner .video-caption {
    text-align: center;
    margin: 0 auto;
    left: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 33%;
    color: #fff;
    z-index: 1;
    width: 970px;
}
.top-video-banner .video-caption h2 {
    font-size: 62px;
    line-height: 62px;
    font-weight: bold;
    margin: 0 0 50px;
    letter-spacing: 0;
    color: inherit;
    font-family: 'Exo 2', sans-serif;
}
.top-video-banner .video-caption p {
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
    margin: 0;
    text-transform: none;
    color: inherit;
    font-family: 'Exo 2', sans-serif;
}
.top-video-banner .video-caption .btn-video-link {
    display: inline-block;
    padding: 16px 64px 17px;
    color: #fff;
    font-weight: 400;
    margin-top: 30px;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 2px;
    background: #2388d9;
    font-family: 'Exo 2', sans-serif;
    border-radius: 32px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}
.top-video-banner .video-caption .btn-video-link:hover {
    background: #ff6949;
    color: #fff;
}
@media (max-width: 991px) {
    .top-video-banner .video-caption {
        width: 750px;
    }
    .top-video-banner .video-caption h2 {
        font-size: 50px;
        line-height: 54px;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .top-video-banner .video-caption {
        width: 100%;
        padding: 0 30px;
        top: 20%;
    }
    .top-video-banner .video-caption h2 {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 20px;
    }
    .top-video-banner .video-caption p {
        font-size: 16px;
        line-height: 24px;
    }
    .top-video-banner .video-caption .btn-video-link {
        padding: 12px 40px;
        font-size: 13px;
        margin-top: 20px;
    }
}

/* 9. КАРТОЧКИ ТОВАРОВ (КАК НА ОРИГИНАЛЕ) */
.product {
    box-shadow: none !important;
    border: none !important;
    background: #ffffff !important;
    margin-bottom: 30px !important;
}
.product .product-img {
    background-color: #ffffff !important;
}
.product .product-img img {
    mix-blend-mode: multiply;
}
.product:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}
.product .product-body {
    background: transparent !important;
    text-align: center !important;
    padding: 15px 0 !important;
}
.product .product-body .product-name {
    text-align: center !important;
    height: auto !important;
    min-height: 40px !important;
    margin-bottom: 10px !important;
}
.product .product-body .product-name > a {
    color: #4a86e8 !important; /* light blue text */
    font-size: 14px !important;
    font-weight: 400 !important;
    font-family: 'Exo 2', sans-serif !important;
}
.product .product-body .product-name > a:hover {
    color: #ff6949 !important;
}
.product .product-body .product-price {
    text-align: center !important;
    color: #333333 !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    font-family: 'Exo 2', sans-serif !important;
}
.product .product-body .product-rating {
    text-align: center !important;
}
.product .product-body .product-rating:after {
    display: none !important;
}
.product-rating span {
    background: transparent !important;
}
/* Hide the red "Купить" add-to-cart button block from hovering */
.product .add-to-cart {
    background: transparent !important;
    border: none !important;
}
.product .add-to-cart .add-to-cart-btn {
    background-color: transparent !important;
    color: #4a86e8 !important;
    border: 1px solid #4a86e8 !important;
    font-weight: 400 !important;
}
.product .add-to-cart .add-to-cart-btn:hover {
    background-color: #4a86e8 !important;
    color: #ffffff !important;
}

/* Updated Product Card Buttons like ipitaka.ru */
.product-btns {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 15px !important;
}

.product-btns button {
    background: transparent !important;
    border: none !important;
    color: #2388d9 !important;
    font-size: 20px !important;
    padding: 0 !important;
    transition: 0.3s !important;
}

.product-btns button:hover {
    color: #ff6949 !important;
    transform: scale(1.2) !important;
}

/* Quick View and Stock Labels */
.product .product-img .product-label {
    top: 0 !important;
    right: 0 !important;
}

.product .product-img .product-label > span.stock-label {
    background-color: #74cc1d !important;
    border: none !important;
    color: #FFF !important;
    display: inline-block !important;
    padding: 3px 10px !important;
    font-size: 13px !important;
    text-transform: none !important;
    font-weight: 500 !important;
}

.quick-view-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s all;
    z-index: 10;
}

.product:hover .quick-view-wrapper {
    opacity: 1;
    visibility: visible;
}

.btn-quick-view {
    background-color: #2388d9;
    color: #fff;
    border: none;
    width: 90%;
    max-width: 240px;
    padding: 15px 10px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-quick-view:hover {
    background-color: #ff6949;
}

/* Modal Quick View Style */
#modal-quickview {
    z-index: 9999 !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}

#modal-quickview .modal-dialog {
    width: 90%;
    max-width: 1000px;
}

#modal-quickview .modal-content {
    border-radius: 0;
    border: none;
    box-shadow: 0 0 40px rgba(0,0,0,0.2);
}

#modal-quickview .modal-header {
    border-bottom: none;
    padding: 0;
    position: relative;
}

#modal-quickview .modal-header .close {
    position: absolute;
    right: -15px;
    top: -15px;
    background: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    opacity: 1;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    text-align: center;
    z-index: 1000;
    text-shadow: none;
}

#modal-quickview .modal-body {
    padding: 40px;
}

#modal-quickview .product-name {
    margin-top: 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

#modal-quickview .product-price {
    font-size: 32px;
    color: #4a86e8;
    font-weight: 600;
    margin: 20px 0;
}

#modal-quickview .product-links {
    padding: 0;
    list-style: none;
    margin-bottom: 25px;
}

#modal-quickview .product-links li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #666;
}

#modal-quickview .product-links li span.product-available {
    color: #74cc1d;
    font-weight: 700;
    text-transform: uppercase;
}

#modal-quickview .qty-selector {
    display: flex;
    border: 1px solid #ddd;
    width: 120px;
    height: 45px;
}

#modal-quickview .qty-selector input {
    width: 60px;
    border: none;
    text-align: center;
    font-size: 16px;
}

#modal-quickview .qty-selector .qty-btns {
    display: flex;
    flex-direction: column;
    width: 30px;
    border-left: 1px solid #ddd;
}

#modal-quickview .qty-selector .qty-btns button {
    height: 22.5px;
    background: #fff;
    border: none;
    font-size: 14px;
    line-height: 1;
    color: #999;
}

#modal-quickview .qty-selector .qty-btns button:first-child {
    border-bottom: 1px solid #ddd;
}

#modal-quickview .btn-add-cart {
    background-color: #d10024;
    color: #fff;
    border: none;
    width: 60px;
    height: 45px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

#modal-quickview .btn-add-cart:hover {
    background-color: #a0001c;
}

#modal-quickview .product-btns-quick {
    display: flex;
    gap: 15px;
    margin-left: 15px;
}

#modal-quickview .product-btns-quick button {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #4a86e8;
    transition: 0.3s;
}

#modal-quickview .product-btns-quick button:hover {
    color: #ff6949;
}

.add-to-cart {
    position: static !important;
    background: transparent !important;
    padding: 10px 0 0 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.btn-buy {
    display: block !important;
    width: 100% !important;
    max-width: 150px !important;
    margin: 10px auto 0 !important;
    background-color: #2388d9 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    transition: 0.3s !important;
}

.btn-buy:hover {
    background-color: #ff6949 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
}

/* Product Page Styles */
.product-details .product-name {
    font-size: 28px !important;
    font-weight: 300 !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
}

.product-details .product-price {
    font-size: 32px !important;
    font-weight: 300 !important;
    color: #333 !important;
    margin: 20px 0 !important;
}

.product-details .list-unstyled li {
    font-size: 14px !important;
    margin-bottom: 8px !important;
    color: #333 !important;
    font-weight: 400 !important;
}

.product-details .list-unstyled li strong {
    font-weight: 600 !important;
}

.product-details .list-unstyled li a {
    color: #4a86e8 !important;
    font-weight: 400 !important;
}

.product-details .product-available {
    color: #74cc1d !important;
    font-weight: 600 !important;
}

.quantity {
    display: flex;
    align-items: center;
    float: left;
    border: 1px solid #e5e5e5;
    background: #fbfbfb;
    height: 40px;
}

.quantity .counter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.quantity .counter:hover {
    background: #e5e5e5;
}

.quantity input#input-quantity {
    width: 40px;
    height: 100%;
    border: none;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    background: transparent;
    text-align: center;
    font-size: 14px;
    padding: 0;
    box-shadow: none;
}

.product-btn {
    height: 40px;
    border: none;
    transition: 0.3s;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #2388d9;
}

.product-btn i {
    font-size: 24px;
}

.product-btn span {
    display: none; /* Hide text as in screenshot */
}

.product-btn.btn-elsof {
    background-color: #2388d9 !important;
    color: #fff !important;
    padding: 0 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 15px 0 10px;
}

.product-btn.btn-elsof:hover {
    background-color: #ff6949 !important;
}

.product-btn.btn-wish-comp {
    padding: 0 10px;
    margin-right: 5px;
}

.product-btn.btn-wish-comp:hover {
    color: #ff6949;
}

.product-btn.btn-wish-comp i {
    font-weight: normal;
}

/* Disable old hover effect */
.product:hover .add-to-cart {
    transform: none !important;
}

/* Label New in Menu */
.label-new-menu {
    background-color: #2388d9 !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    margin-left: 5px !important;
    vertical-align: middle !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Simple Checkout Styling */
.simplecheckout-block {
    margin-bottom: 30px;
}

.simplecheckout-block .checkout-heading {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    padding: 10px 0 !important;
    margin-bottom: 20px !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #333 !important;
}

.simplecheckout-block-content .form-control {
    background-color: #fbfbfb !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    height: 40px !important;
    padding: 10px 15px !important;
}

.simplecheckout-block-content .form-control:focus {
    border-color: #2388d9 !important;
}

.simplecheckout-block-content label {
    font-weight: 400 !important;
    color: #555 !important;
}

.simplecheckout-cart th {
    background: transparent !important;
    border-bottom: 2px solid #ddd !important;
    color: #333 !important;
    font-weight: 600 !important;
    text-transform: none !important;
}

.simplecheckout-cart td {
    border-color: #eee !important;
    vertical-align: middle !important;
}

.simplecheckout-cart-total {
    font-size: 16px !important;
    color: #333 !important;
}

.simplecheckout-cart-total-value {
    font-weight: 700 !important;
}

#simplecheckout_button_confirm, .button_oc {
    background-color: #2388d9 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: 0.3s !important;
    text-transform: uppercase;
}

#simplecheckout_button_confirm:hover, .button_oc:hover {
    background-color: #ff6949 !important;
}

h1 {
    font-weight: 300 !important;
}

/* Default Cart Page Enhancements */
.table-bordered > thead > tr > th {
    background: transparent !important;
    border-bottom: 2px solid #ddd !important;
    font-weight: 600 !important;
    color: #333 !important;
}

.table-bordered > tbody > tr > td {
    border-color: #eee !important;
    vertical-align: middle !important;
}

.table-bordered {
    border: none !important;
}

.btn-primary {
    background-color: #2388d9 !important;
    border-color: #2388d9 !important;
    border-radius: 4px !important;
    transition: 0.3s !important;
}

.btn-primary:hover {
    background-color: #ff6949 !important;
    border-color: #ff6949 !important;
}

/* ===== PRODUCT GALLERY WITH ARROW NAVIGATION ===== */
.pitaka-gallery-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
}

/* Левая колонка с миниатюрами */
.pitaka-thumbs-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 80px !important;
    flex-shrink: 0 !important;
}

/* Кнопки-стрелки */
.pitaka-thumb-nav {
    width: 70px !important;
    height: 30px !important;
    background: #f5f5f5 !important;
    border: 1px solid #e0e0e0 !important;
    color: #4a86e8 !important;
    font-size: 20px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border-radius: 2px !important;
}

.pitaka-thumb-nav:hover {
    background: #4a86e8 !important;
    color: #fff !important;
    border-color: #4a86e8 !important;
}

.pitaka-thumb-nav:disabled {
    opacity: 0.3 !important;
    cursor: default !important;
}

/* Viewport — обрезает список миниатюр */
.pitaka-thumbnails-viewport {
    width: 80px !important;
    height: 450px !important; /* 5 миниатюр × 90px */
    overflow: hidden !important;
    margin: 5px 0 !important;
}

/* Список миниатюр — сдвигается через transform */
.pitaka-thumbnails {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    transition: transform 0.3s ease !important;
    width: 80px !important;
    overflow: visible !important;
    max-height: none !important;
}

.pitaka-thumbnails .thumbnail {
    margin: 0 !important;
    padding: 3px !important;
    border: 2px solid #eee !important;
    border-radius: 2px !important;
    width: 74px !important;
    height: 74px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.pitaka-thumbnails .thumbnail.active {
    border-color: #4a86e8 !important;
}

.pitaka-thumbnails .thumbnail:hover {
    border-color: #4a86e8 !important;
    opacity: 0.85 !important;
}

.pitaka-thumbnails img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Главное фото */
.pitaka-main-image {
    flex: 1 !important;
    min-width: 0 !important;
}

.pitaka-main-image .thumbnail {
    border: none !important;
    padding: 0 !important;
    display: block !important;
}

.pitaka-main-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 550px !important;
    object-fit: contain !important;
}

/* =========================================
   СКРЫТИЕ ЛИШНИХ ПОЛЕЙ В SIMPLE CHECKOUT
   ========================================= */
.simplecheckout-block-content [data-sort-id="postcode"],
.simplecheckout-block-content [data-sort-id="company"],
.simplecheckout-block-content [data-sort-id="fax"],
.simplecheckout-block-content [data-sort-id="address_2"],
.simplecheckout-block-content .row-shipping_address_postcode,
.simplecheckout-block-content .row-payment_address_postcode,
.simplecheckout-block-content .row-postcode,
.simplecheckout-block-content .row-company,
.simplecheckout-block-content .row-fax,
.simplecheckout-block-content .row-address_2 {
    display: none !important;
}

/* Делаем оставшиеся поля (Имя, Телефон, Адрес) на всю ширину для красоты */
.simplecheckout-block-content .form-group {
    width: 100% !important;
    margin-bottom: 15px !important;
}

/* =========================================
   ХАК: СКРЫТИЕ ПОЛЕЙ В AJAX QUICK CHECKOUT FREE
   ========================================= */
/* Скрываем поля Компания, Факс, Индекс, Адрес 2 и их обертки */
#payment_address_company, .qc-field[data-name="company"], .sort-item[data-id="company"], div:has(> input[name*="[company]"]),
#payment_address_fax, .qc-field[data-name="fax"], .sort-item[data-id="fax"], div:has(> input[name*="[fax]"]),
#payment_address_postcode, .qc-field[data-name="postcode"], .sort-item[data-id="postcode"], div:has(> input[name*="[postcode]"]),
#payment_address_address_2, .qc-field[data-name="address_2"], .sort-item[data-id="address_2"], div:has(> input[name*="[address_2]"]) {
    display: none !important;
}

/* Скрываем блок "Использовать купон / сертификат" (если он не нужен) */
#d_quickcheckout_cart .qc-checkout-product .panel-group {
    display: none !important;
}

/* Красим главную кнопку оформления в фирменный синий цвет Pitaka */
#qc_confirm_order {
    background-color: #2388d9 !important;
    border-color: #2388d9 !important;
    color: #fff !important;
    font-size: 18px !important;
    padding: 15px 30px !important;
    border-radius: 4px !important;
    width: 100% !important;
}
#qc_confirm_order:hover {
    background-color: #1a6baf !important;
}

/* =========================================
   ИМИТАЦИЯ SIMPLECHECKOUT ДЛЯ D_QUICKCHECKOUT
   ========================================= */

/* Заголовок "Вы будете зарегистрированы!" */
#d_quickcheckout:before {
    content: "Вы будете зарегистрированы!";
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Делаем все колонки в один ряд (100%) */
#d_quickcheckout .row .col-md-3,
#d_quickcheckout .row .col-md-4,
#d_quickcheckout .row .col-md-6,
#d_quickcheckout .row .col-sm-3,
#d_quickcheckout .row .col-sm-4,
#d_quickcheckout .row .col-sm-6,
#d_quickcheckout .row .col-sm-8,
#d_quickcheckout .row .qc-col-1,
#d_quickcheckout .row .qc-col-2,
#d_quickcheckout .row .qc-col-3,
#d_quickcheckout .row .qc-col-4 {
    width: 100% !important;
    float: none !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Ограничиваем ширину корзины, чтобы она была шире формы, но по центру */
#d_quickcheckout #cart_view {
    max-width: 1000px;
    margin: 0 auto;
}

/* Скрываем заголовки блоков (Оплата, Доставка) */
#d_quickcheckout .panel-heading {
    display: none !important;
}

/* Делаем лейблы слева, инпуты справа (классика simplecheckout) */
#d_quickcheckout .form-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

#d_quickcheckout .form-group > label.control-label {
    width: 30%;
    text-align: right;
    padding-right: 15px;
    font-weight: normal;
}

#d_quickcheckout .form-group > div {
    width: 70%;
}

/* Скрываем лишние шаги */
#d_quickcheckout #login_view,
#d_quickcheckout #shipping_address_view,
#d_quickcheckout #shipping_method_view,
#d_quickcheckout #payment_method_view,
#d_quickcheckout .qc-totals {
    display: none !important;
}

/* Кнопка оформления на всю ширину */
#d_quickcheckout #qc_confirm_order {
    width: auto !important;
    min-width: 200px;
    float: right;
    margin-top: 20px;
}

/* Таблица корзины: убираем лишние бордеры */
#d_quickcheckout .qc-cart {
    border-radius: 0;
    margin-top: 40px;
}

#d_quickcheckout .qc-cart thead {
    background: #f7f7f7;
}

#d_quickcheckout .qc-cart thead td {
    border-bottom: 2px solid #ddd;
    font-weight: bold;
}

/* =========================================
   СТИЛИЗАЦИЯ КНОПОК НА КАРТОЧКАХ ТОВАРОВ В КАТЕГОРИИ
   ========================================= */

.pitaka-category-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 15px !important;
}

.pitaka-category-buttons button {
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    color: #333333 !important;
    padding: 8px 20px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    font-family: 'Exo 2', sans-serif !important;
}

.pitaka-category-buttons button:first-child {
    background: #2388d9 !important;
    border-color: #2388d9 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

.pitaka-category-buttons button:first-child:hover {
    background: #ff6949 !important;
    border-color: #ff6949 !important;
    color: #ffffff !important;
}

.pitaka-category-buttons button:not(:first-child) {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pitaka-category-buttons button:not(:first-child):hover {
    border-color: #2388d9 !important;
    color: #2388d9 !important;
    background: #f5f5f5 !important;
}

.pitaka-category-buttons button i {
    font-size: 16px !important;
}

/* =========================================
   IPITAKA QUICKVIEW MODAL STYLES
   ========================================= */

#modal-quickview .modal-dialog {
    max-width: 900px !important;
    width: 90% !important;
    margin: 30px auto !important;
}

#modal-quickview .modal-content {
    border-radius: 4px !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
    overflow: hidden;
}

#modal-quickview .modal-header {
    border: none !important;
    padding: 0 !important;
    position: absolute !important;
    right: 15px;
    top: 15px;
    z-index: 1050;
}

#modal-quickview .modal-header .close {
    position: relative !important;
    width: 30px !important;
    height: 30px !important;
    background: #333 !important;
    color: #fff !important;
    border-radius: 50% !important;
    opacity: 0.8 !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    line-height: 28px !important;
    text-align: center !important;
    z-index: 1001 !important;
    text-shadow: none !important;
    border: none !important;
    right: 0 !important;
    top: 0 !important;
    transition: 0.3s;
}

#modal-quickview .modal-header .close:hover {
    background: #d10024 !important;
    opacity: 1 !important;
}

#modal-quickview .modal-body {
    padding: 30px 40px !important;
}

.ipitaka-quickview-modal {
    margin: 0 !important;
    display: flex;
    align-items: center;
}

/* Gallery Styles */
.ipitaka-quickview-gallery {
    position: relative !important;
    padding: 20px 0;
}

.ipitaka-main-image-qv {
    width: 100% !important;
    margin-bottom: 0 !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 400px !important;
    position: relative;
}

.ipitaka-main-image-qv img {
    max-width: 85% !important;
    max-height: 500px;
    height: auto !important;
    display: block !important;
    object-fit: contain;
}

.ipitaka-gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
    z-index: 10;
}

.ipitaka-gallery-nav .gallery-prev,
.ipitaka-gallery-nav .gallery-next {
    background: transparent !important;
    border: none !important;
    color: #2388d9 !important;
    font-size: 30px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    padding: 0;
    opacity: 0.7;
}

.ipitaka-gallery-nav .gallery-prev:hover,
.ipitaka-gallery-nav .gallery-next:hover {
    color: #d10024 !important;
    opacity: 1;
}

.ipitaka-thumbnails-qv {
    display: none !important; /* Hide thumbnails, keep only arrows as in original */
}

/* Product Details */
.badge-new-qv {
    display: inline-block !important;
    background: #2388d9 !important;
    color: #fff !important;
    padding: 4px 10px !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
    border-radius: 2px;
}

.product-name-qv {
    font-size: 26px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 0 25px 0 !important;
    line-height: 1.3 !important;
    font-family: 'Exo 2', sans-serif !important;
}

.product-price-qv {
    margin-bottom: 15px !important;
}

.price-special-qv {
    font-size: 28px !important;
    font-weight: 400 !important;
    color: #333 !important;
    margin-right: 15px !important;
}

.price-old-qv {
    font-size: 18px !important;
    color: #999 !important;
    text-decoration: line-through !important;
}

.price-regular-qv {
    font-size: 28px !important;
    font-weight: 400 !important;
    color: #333 !important;
}

.product-meta-qv {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 25px 0 !important;
}

.product-meta-qv li {
    margin-bottom: 5px !important;
    font-size: 14px !important;
    color: #666 !important;
}

.product-meta-qv .meta-label {
    font-weight: 400 !important;
    color: #666 !important;
    margin-right: 5px !important;
}

.product-meta-qv .meta-value {
    color: #333;
}

.product-meta-qv .meta-value a {
    color: #333 !important;
    text-decoration: none !important;
}

.product-meta-qv .meta-value a:hover {
    color: #2388d9 !important;
}

.product-meta-qv .stock-available {
    color: #74cc1d !important;
    font-weight: 700 !important;
    text-transform: none !important;
}

/* Product Actions */
.product-actions-qv {
    display: flex !important;
    align-items: stretch !important;
    gap: 15px !important;
    margin-top: 30px !important;
}

.qty-wrapper-qv {
    display: flex !important;
    border: none !important;
    background: transparent !important;
}

.qty-btn {
    width: 35px !important;
    height: 40px !important;
    background: #f5f5f5 !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 18px !important;
    color: #333 !important;
    transition: all 0.3s !important;
}

.qty-btn:hover {
    background: #e0e0e0 !important;
}

.qty-input-qv {
    width: 40px !important;
    height: 40px !important;
    border: none !important;
    background: #f5f5f5 !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #333 !important;
    margin: 0 2px;
}

.product-btns-qv {
    display: flex !important;
    gap: 10px !important;
    align-items: center;
}

.btn-cart-qv,
.btn-icon-qv {
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border: none !important;
    color: #2388d9 !important;
    font-size: 22px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0;
}

.btn-cart-qv:hover,
.btn-icon-qv:hover {
    color: #d10024 !important;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 767px) {
    #modal-quickview .modal-body {
        padding: 20px !important;
    }
    
    .ipitaka-quickview-modal {
        flex-direction: column;
    }
    
    .ipitaka-main-image-qv {
        min-height: 250px !important;
    }
    
    .product-name-qv {
        font-size: 20px !important;
    }
    
    .price-special-qv,
    .price-regular-qv {
        font-size: 22px !important;
    }
    
    .product-actions-qv {
        flex-wrap: wrap !important;
    }
}
