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

:root {
  --color-body: #0b1f33;
  --color-heading: #0b1f33;

  --color-primary: #168bff;
  --color-primary-hover: #0878e8;
  --color-primary-active: #0068cf;

  --color-accent: #9eea25;
  --color-accent-hover: #89d114;
  --color-accent-text: #0b1f33;

  --color-dark: #071626;
  --color-dark-secondary: #0b1f33;

  --color-background: #ffffff;
  --color-background-soft: #f6f9fc;

  --color-border: #dce5ee;
  --color-muted: #66788a;
  --color-muted-light: #aab8c5;
}

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

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

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

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

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

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

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--color-primary);
  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 var(--color-border);
  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 var(--color-border);
  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 var(--color-border);
  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: var(--color-border);
  color: var(--color-primary);
}

/*-- Select input --*/

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

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

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

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

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

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--color-border);
  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: var(--color-primary);
  border-color: var(--color-primary);
}

.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: var(--color-muted);
}

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

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

.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: var(--color-background-soft);
  border-bottom: 1px solid var(--color-border);
  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: var(--color-muted);
  margin-right: 10px;
}

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

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

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

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

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

.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: var(--color-primary);
}

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

.col-sm-6.header-links {
    text-align: center;
}

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

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

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
    height: 75px;
	border-radius: 20px;
}

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

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

.header-search form {
  position: relative;
}



.header-search form {
	display: flex;
	width: 100%;
}

.header-search form .input {
	flex: 1;
	width: auto;
	min-width: 0;
	margin-right: -4px;
	border-radius: 40px 0 0 40px;
}

.header-search form .search-btn {
	flex: 0 0 100px;
	width: 100px;
}

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

.header-product-search-field {
	position: relative;
	display: flex;
	width: 100%;
}

.header-search-suggestions {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	z-index: 1200;
	max-height: 430px;
	overflow-y: auto;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 8px 25px rgba(7, 22, 38, 0.18);
}

.header-search-suggestions[hidden] {
	display: none;
}

/* Fix oversized search suggestion images */
.header-search-suggestions {
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
}

.header-search-result {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	overflow: hidden;
}

.header-search-result-image {
	display: flex;
	flex: 0 0 60px;
	align-items: center;
	justify-content: center;
	width: 60px;
	min-width: 60px;
	max-width: 60px;
	height: 60px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	background: #fff;
}

.header-search-result-image img {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
	max-height: 100% !important;
	padding: 5px;
	margin: 0;
	box-sizing: border-box;
	object-fit: contain;
	object-position: center;
}

.header-search-result-content {
	min-width: 0;
	overflow: hidden;
}



/*----------------------------*\
	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: var(--color-primary);
}

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

.cart-dropdown {
	position: absolute;
	right: 0;
	z-index: 1101;
	width: 300px;
	padding: 15px;
	background: #fff;
	box-shadow: 0 0 0 2px var(--color-border);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.header-ctn .dropdown.open {
	position: relative;
	z-index: 1100;
}

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

.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: var(--color-heading);
}

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

.cart-dropdown .cart-btns>a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: var(--color-primary);
  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: var(--color-dark-secondary);
}

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

.cart-dropdown .cart-summary {
  border-top: 1px solid var(--color-border);
  padding-top: 15px;
  padding-bottom: 15px;
}

@media only screen and (max-width: 767px) {
	.header-ctn .dropdown.open {
		z-index: 1100;
	}

	.cart-dropdown {
		z-index: 1101;
		width: min(300px, calc(100vw - 20px));
		max-height: calc(100vh - 110px);
		overflow: visible;
	}

	.cart-dropdown .cart-list {
		max-height: min(240px, calc(100vh - 280px));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.cart-dropdown a,
	.cart-dropdown button {
		position: relative;
		z-index: 1;
		touch-action: manipulation;
	}
}

@media only screen and (max-width: 767px) {
	.header-ctn .dropdown {
		position: relative;
	}

	.header-ctn .dropdown .cart-dropdown {
		left: 50%;
		right: auto;
		width: min(300px, calc(100vw - 20px));
		transform: translateX(-50%);
	}
}

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

#navigation {
  background: #FFF;
  border-bottom: 2px solid var(--color-border);
  border-top: 3px solid #9eea25;
}

/*----------------------------*\
	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: var(--color-primary);
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--color-primary);
  -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: var(--color-dark);
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: #FFF;
  }
}

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

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

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: #9eea25;
  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: #9eea25;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

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

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

.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: var(--color-border);
  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: #9eea25e6;
  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;
}

/*=========================================================
	CART NOTIFICATION
===========================================================*/

.battery-cart-notification {
	position: fixed;
	right: 25px;
	bottom: 25px;
	z-index: 9999;
	max-width: 360px;
	padding: 15px 20px;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
	pointer-events: none;
}

.battery-cart-notification.success {
	background: #218838;
}

.battery-cart-notification.error {
	background: #d10024;
}

.battery-cart-notification.visible {
	opacity: 1;
	transform: translateY(0);
}

/*=========================================================
	HEADER CART
===========================================================*/

.battery-cart-empty {
	padding: 25px 15px;
	text-align: center;
}

.battery-cart-empty .fa {
	margin-bottom: 10px;
	color: #d10024;
	font-size: 30px;
}

.battery-cart-empty p {
	margin-bottom: 8px;
}

.battery-cart-dropdown-item .product-img {
	overflow: hidden;
}

.battery-cart-dropdown-item .product-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	box-sizing: border-box;
}

.cart-btns a.disabled {
	cursor: not-allowed;
	opacity: 0.5;
	pointer-events: none;
}

/*=========================================================
	PRODUCT PURCHASE CONTROLS
===========================================================*/

.battery-product-purchase {
	display: flex;
	align-items: flex-end;
	gap: 15px;
	flex-wrap: wrap;
}

.battery-product-quantity label {
	display: block;
	margin-bottom: 7px;
	color: #2b2d42;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.battery-product-quantity input {
	width: 85px;
	height: 44px;
	padding: 0 12px;
	border: 1px solid #e4e7ed;
	text-align: center;
}

.battery-product-purchase .primary-btn {
	min-height: 44px;
}

/*=========================================================
	CART PAGE
===========================================================*/

.battery-cart-page-heading {
	margin-bottom: 25px;
}

.battery-cart-page-heading h1 {
	margin-bottom: 8px;
}

.battery-cart-page-heading p {
	color: #666;
}

.battery-cart-page-item {
	display: grid;
	grid-template-columns: 125px minmax(0, 1fr) 135px 120px;
	gap: 20px;
	align-items: center;
	margin-bottom: 18px;
	padding: 20px;
	border: 1px solid #e4e7ed;
	background: #fff;
}

.battery-cart-page-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 125px;
	height: 125px;
	overflow: hidden;
	background: #f8f8f8;
}

.battery-cart-page-image a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.battery-cart-page-image img {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	object-fit: contain;
	box-sizing: border-box;
}

.battery-cart-page-details h2 {
	margin: 4px 0 10px;
	font-size: 18px;
}

.battery-cart-page-details h2 a {
	color: #2b2d42;
}

.battery-cart-item-specification {
	margin-bottom: 8px;
	color: #666;
	font-size: 12px;
}

.battery-cart-item-specification span {
	margin: 0 5px;
}

.battery-cart-unit-price {
	margin-bottom: 8px;
	font-weight: 700;
}

.battery-cart-remove,
.battery-clear-cart {
	padding: 0;
	border: 0;
	background: transparent;
	color: #d10024;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.battery-cart-page-quantity > label {
	display: block;
	margin-bottom: 7px;
	font-size: 11px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

.battery-cart-quantity-control {
	display: grid;
	grid-template-columns: 35px 55px 35px;
}

.battery-cart-quantity-control button,
.battery-cart-quantity-control input {
	height: 38px;
	border: 1px solid #e4e7ed;
	background: #fff;
	text-align: center;
}

.battery-cart-quantity-control button {
	color: #2b2d42;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
}

.battery-cart-quantity-control input {
	border-right: 0;
	border-left: 0;
	appearance: textfield;
}

.battery-cart-quantity-control input::-webkit-inner-spin-button,
.battery-cart-quantity-control input::-webkit-outer-spin-button {
	margin: 0;
	appearance: none;
}

.battery-cart-page-total {
	text-align: right;
}

.battery-cart-page-total span {
	display: block;
	margin-bottom: 5px;
	color: #777;
	font-size: 11px;
	text-transform: uppercase;
}

.battery-cart-page-total strong {
	color: #d10024;
	font-size: 18px;
}

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

.battery-cart-summary-panel h2 {
	margin: 0 0 25px;
	font-size: 21px;
}

.battery-cart-summary-row,
.battery-cart-summary-total {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	padding: 13px 0;
	border-bottom: 1px solid #e4e7ed;
}

.battery-cart-summary-total {
	margin-bottom: 20px;
	border-bottom: 0;
	font-size: 17px;
}

.battery-cart-summary-total strong {
	color: #d10024;
}

.battery-checkout-button {
	display: block;
	width: 100%;
	padding: 14px;
	text-align: center;
}

.battery-checkout-button.disabled {
	cursor: not-allowed;
	opacity: 0.5;
	pointer-events: none;
}

.battery-continue-shopping {
	display: block;
	margin-top: 15px;
	text-align: center;
}

.battery-clear-cart {
	display: block;
	margin: 18px auto 0;
}

.battery-cart-summary-note {
	margin: 22px 0 0;
	color: #777;
	font-size: 11px;
	line-height: 1.6;
}

.battery-cart-page-empty {
	padding: 70px 25px;
	border: 1px solid #e4e7ed;
	background: #fafafa;
	text-align: center;
}

.battery-cart-page-empty .fa {
	margin-bottom: 15px;
	color: #d10024;
	font-size: 45px;
}

.battery-cart-page-empty h2 {
	margin-bottom: 10px;
}

.battery-cart-page-empty p {
	margin-bottom: 22px;
	color: #666;
}

@media only screen and (max-width: 991px) {
	#cart-page-summary {
		margin-top: 30px;
	}

	.battery-cart-page-item {
		grid-template-columns: 110px minmax(0, 1fr) 125px;
	}

	.battery-cart-page-total {
		grid-column: 2 / 4;
	}
	.battery-cart-quantity-control {
    grid-template-columns: 30px 40px 30px;
}
}

@media only screen and (max-width: 600px) {
	.battery-cart-page-item {
		grid-template-columns: 90px minmax(0, 1fr);
		padding: 15px;
	}

	.battery-cart-page-image {
		width: 90px;
		height: 90px;
	}

	.battery-cart-page-quantity {
		grid-column: 1 / 2;
	}

	.battery-cart-page-total {
		grid-column: 2 / 3;
	}

	.battery-cart-page-total {
		text-align: left;
	}

	.battery-cart-notification {
		right: 15px;
		bottom: 15px;
		left: 15px;
		max-width: none;
	}
}

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

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

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px var(--color-border), 0px 0px 0px 1px var(--color-border);
  box-shadow: 0px 0px 0px 0px var(--color-border), 0px 0px 0px 1px var(--color-border);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px var(--color-border), 0px 0px 0px 2px #9eea25;
  box-shadow: 0px 0px 6px 0px var(--color-border), 0px 0px 0px 2px #9eea25;
}

.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: var(--color-primary);
  color: var(--color-primary);
}

.product .product-img .product-label>span.new {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  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: var(--color-muted);
}

.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: var(--color-primary);
}

.product .product-body .product-price {
  color: var(--color-primary);
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: var(--color-muted);
}

.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: var(--color-border);
  z-index: 10;
}

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

.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: var(--color-border);
}

.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: var(--color-border);
  color: var(--color-primary);
  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: var(--color-dark-secondary);
  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: var(--color-dark-secondary);
  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;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 30px;
	border: 2px solid transparent;
	border-radius: 40px;
	background-color: #89d114;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	vertical-align: middle;
	-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: var(--color-primary);
  opacity: 0;
  visibility: hidden;
}

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

.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: var(--color-primary);
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: var(--color-primary);
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: var(--color-muted);
}

.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: var(--color-dark-secondary);
  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: var(--color-muted);
}

/*-- Price Filter --*/

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

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

.noUi-connect {
  background-color: var(--color-primary);
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #9eea25;
  -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 var(--color-border);
  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: var(--color-border);
  color: var(--color-primary);
}

.store-grid li.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  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 var(--color-border);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

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

.store-pagination li:hover {
  background-color: var(--color-border);
  color: var(--color-primary);
}

.store-pagination li.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  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 var(--color-border);
}

#product-imgs .product-preview.slick-current {
  border-color: var(--color-primary);
}

#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: var(--color-border);
}

.product-details .product-rating>i.fa-star {
  color: var(--color-primary);
}

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

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: var(--color-muted);
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: var(--color-primary);
}

.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: #89d114;
  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: var(--color-primary);
  opacity: 0;
  visibility: hidden;
}

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

#product-tab .tab-nav li.active a {
  color: var(--color-primary);
}

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

.rating-avg .rating-stars>i.fa-star, .rating .rating-stars>i.fa-star {
  color: var(--color-primary);
}

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

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

.rating .rating-progress>div {
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: var(--color-muted);
}

/*-- 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: var(--color-muted);
  font-size: 10px;
  margin: 0;
}

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

.reviews .review-heading .review-rating>i {
  color: var(--color-border);
}

.reviews .review-heading .review-rating>i.fa-star {
  color: var(--color-primary);
}

.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 var(--color-border);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: var(--color-border);
  color: var(--color-primary);
}

.reviews-pagination li.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  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: var(--color-border);
  -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: var(--color-primary);
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: var(--color-primary);
}

/*=========================================================
	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 var(--color-border);
  border-left: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.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: var(--color-primary);
}

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

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

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

#newsletter.section {
  border-top: 2px solid var(--color-border);
  border-bottom: 3px solid #9eea25;
  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: var(--color-border);
  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: #9eea25;
  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 var(--color-border);
  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: var(--color-border);
  color: var(--color-primary);
}

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

#footer {
  background: var(--color-dark);
  color: var(--color-muted-light);
}

#bottom-footer {
  background: var(--color-dark-secondary);
}

.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: var(--color-muted-light);
}

.footer-links li i {
  margin-right: 15px;
  color: var(--color-primary);
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: var(--color-primary);
}

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

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

.footer-payments li a {
  color: var(--color-dark);
  font-size: 36px;
  display: block;
}

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

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

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  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: var(--color-primary);
  border-color: var(--color-primary);
}

.slick-prev:before, .slick-next:before {
  font-family: FontAwesome;
  color: var(--color-heading);
}

.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: var(--color-border);
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: var(--color-primary);
}

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


/* Product gallery thumbnails — force compact sizing */
.battery-thumbnail-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
}

.battery-thumbnail-list .battery-thumbnail {
	display: block;
	flex: 0 0 80px;
	width: 80px !important;
	min-width: 80px !important;
	max-width: 80px !important;
	height: 80px !important;
	min-height: 80px !important;
	max-height: 80px !important;
	padding: 5px;
	margin: 0;
	overflow: hidden;
	border: 2px solid #e4e7ed;
	border-radius: 4px;
	background: #fff;
	appearance: none;
	cursor: pointer;
}

.battery-thumbnail-list .battery-thumbnail img {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
	max-height: 100% !important;
	margin: 0;
	padding: 0;
	object-fit: contain;
}

.battery-thumbnail-list .battery-thumbnail:hover,
.battery-thumbnail-list .battery-thumbnail:focus,
.battery-thumbnail-list .battery-thumbnail.active {
	border-color: #d10024;
	outline: none;
	box-shadow: 0 0 0 2px rgba(209, 0, 36, 0.12);
}

/*=========================================================
	BATTERY STORE
===========================================================*/

.store-page-title {
	margin: 18px 0 8px;
	font-size: 30px;
}

.store-page-intro {
	max-width: 760px;
	margin: 0;
	color: #666;
	line-height: 1.7;
}

.battery-filter-panel {
	padding: 22px;
	border: 1px solid #e4e7ed;
	background: #fff;
}

.battery-filter-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 25px;
}

.battery-filter-heading h2 {
	margin: 0;
	font-size: 20px;
}

.battery-filter-reset {
	padding: 0;
	border: 0;
	background: transparent;
	color: #d10024;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
}

.battery-filter-reset:hover,
.battery-filter-reset:focus {
	text-decoration: underline;
	outline: none;
}

.battery-filter-group {
	margin-bottom: 22px;
}

.battery-filter-group > label {
	display: block;
	margin-bottom: 8px;
	color: #2b2d42;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.battery-filter-select {
	width: 100%;
}

.battery-search-input {
	position: relative;
}

.battery-search-input .input {
	width: 100%;
	padding-right: 40px;
}

.battery-search-input .fa {
	position: absolute;
	top: 50%;
	right: 14px;
	color: #777;
	transform: translateY(-50%);
	pointer-events: none;
}

.battery-custom-callout {
	margin-top: 28px;
	padding: 20px;
	border-left: 4px solid #d10024;
	background: #f8f8f8;
}

.battery-custom-callout > .fa {
	color: #d10024;
	font-size: 24px;
}

.battery-custom-callout h3 {
	margin: 12px 0 8px;
	font-size: 17px;
}

.battery-custom-callout p {
	margin-bottom: 16px;
	color: #666;
	font-size: 13px;
	line-height: 1.6;
}

.battery-custom-callout .primary-btn {
	display: block;
	padding: 11px 12px;
	text-align: center;
}

.battery-store-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
	padding: 16px 18px;
}

.battery-store-summary h2 {
	margin: 0 0 5px;
	font-size: 21px;
}

.battery-store-summary .store-qty {
	float: none;
	color: #777;
}

.battery-empty-results {
	padding: 70px 20px;
	border: 1px solid #e4e7ed;
	background: #fafafa;
	text-align: center;
}

.battery-empty-results > .fa {
	margin-bottom: 15px;
	color: #d10024;
	font-size: 40px;
}

.battery-empty-results h3 {
	margin: 0 0 10px;
}

.battery-empty-results p {
	margin-bottom: 20px;
	color: #666;
}

/* Product card image container */
.battery-product-card .product-img {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 250px;
	overflow: hidden;
	background: #f8f8f8;
}

/* Clickable image wrapper */
.battery-product-card .product-img > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* Product image */
.battery-product-card .product-img img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	padding: 15px;
	box-sizing: border-box;
	object-fit: contain;
	object-position: center;
}

img#battery-main-product-image {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    padding: 15px;
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
}

@media only screen and (max-width: 991px) {
	.battery-filter-panel {
		margin-bottom: 30px;
	}

	.battery-store-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media only screen and (max-width: 480px) {
	.battery-store-toolbar .store-sort,
	.battery-store-toolbar .store-sort label,
	.battery-store-toolbar .input-select {
		width: 100%;
	}
}


/*=========================================================
	CHECKOUT CART INTEGRATION
===========================================================*/

.checkout-select {
	width: 100%;
}

.billing-details label,
.shipping-details label,
.order-notes > label {
	display: block;
	margin-bottom: 7px;
	color: #2b2d42;
	font-size: 12px;
	font-weight: 700;
}

.checkout-shipping-fields {
	margin-top: 22px;
}

.checkout-message {
	margin-bottom: 25px;
	padding: 15px 18px;
	border-left: 4px solid;
	line-height: 1.5;
}

.checkout-message.error {
	border-color: #d10024;
	background: #fff1f3;
	color: #9e001b;
}

.checkout-message.success {
	border-color: #218838;
	background: #effaf2;
	color: #176327;
}

.checkout-order-product {
	align-items: flex-start;
}

.checkout-order-product > div:first-child {
	max-width: 70%;
}

.checkout-order-product a {
	color: #2b2d42;
	font-weight: 500;
}

.checkout-order-quantity {
	color: #777;
	font-size: 12px;
	white-space: nowrap;
}

.checkout-empty-cart {
	padding: 20px 0;
	text-align: center;
}

.checkout-empty-cart p {
	margin-bottom: 8px;
}

.checkout-review-notice {
	display: flex;
	gap: 12px;
	margin: 20px 0;
	padding: 15px;
	border-left: 4px solid #d10024;
	background: #f8f8f8;
}

.checkout-review-notice .fa {
	margin-top: 2px;
	color: #d10024;
	font-size: 20px;
}

.checkout-review-notice p {
	margin: 0;
	color: #555;
	font-size: 12px;
	line-height: 1.6;
}

.order-submit {
	width: 100%;
	border: 0;
}

.order-submit:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.checkout-return-cart {
	display: block;
	margin-top: 15px;
	text-align: center;
}

.checkout-complete {
	padding: 50px 0;
}

.checkout-complete-panel {
	max-width: 650px;
	margin: 0 auto;
	padding: 50px 35px;
	border: 1px solid #e4e7ed;
	background: #fff;
	text-align: center;
}

.checkout-complete-panel > .fa {
	margin-bottom: 18px;
	color: #218838;
	font-size: 60px;
}

.checkout-complete-panel h1 {
	margin-bottom: 15px;
}

.checkout-order-number {
	display: block;
	margin: 12px 0 20px;
	color: #d10024;
	font-size: 22px;
}

.checkout-development-warning {
	margin: 25px 0;
	padding: 15px;
	border: 1px solid #f0c36d;
	background: #fff8e5;
	color: #6f5412;
	font-size: 12px;
	line-height: 1.6;
}

/*=========================================================
	CUSTOM BATTERY QUOTE
===========================================================*/

.custom-quote-section {
	background: #f8f8f8;
}

.quote-introduction {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 25px;
	padding: 22px;
	border-left: 5px solid #d10024;
	background: #fff;
}

.quote-introduction-icon {
	display: flex;
	flex: 0 0 45px;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #d10024;
	color: #fff;
	font-size: 22px;
}

.quote-introduction h2 {
	margin: 0 0 8px;
	font-size: 22px;
}

.quote-introduction p {
	margin: 0;
	color: #666;
	line-height: 1.7;
}

.quote-form-panel {
	margin-bottom: 25px;
	padding: 25px;
	border: 1px solid #e4e7ed;
	background: #fff;
}

.quote-form-panel .section-title {
	margin-bottom: 20px;
}

.quote-form-panel label {
	display: block;
	margin-bottom: 7px;
	color: #2b2d42;
	font-size: 12px;
	font-weight: 700;
}

.quote-optional {
	margin-left: 5px;
	color: #999;
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
}

.quote-panel-description {
	margin-top: -8px;
	margin-bottom: 20px;
	color: #777;
	font-size: 12px;
}

.quote-full-select {
	width: 100%;
}

.quote-textarea {
	min-height: 120px;
	padding-top: 12px;
	resize: vertical;
}

.quote-large-textarea {
	min-height: 170px;
}

.quote-input-unit {
	position: relative;
}

.quote-input-unit .input {
	padding-right: 52px;
}

.quote-input-unit > span {
	position: absolute;
	top: 50%;
	right: 14px;
	color: #777;
	font-size: 12px;
	font-weight: 700;
	transform: translateY(-50%);
	pointer-events: none;
}

.quote-selected-product {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	padding: 15px;
	border: 1px solid #e4e7ed;
	background: #fafafa;
}

.quote-selected-product-image {
	display: flex;
	flex: 0 0 90px;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	overflow: hidden;
	background: #fff;
}

.quote-selected-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	padding: 8px;
	box-sizing: border-box;
	object-fit: contain;
}

.quote-selected-product-details > span {
	color: #d10024;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.quote-selected-product-details h3 {
	margin: 5px 0 7px;
	font-size: 16px;
}

.quote-selected-product-details p {
	margin: 0;
	color: #666;
	font-size: 12px;
}

.quote-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 25px;
}

.quote-checkbox-option {
	display: flex !important;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	margin: 0 !important;
	padding: 12px;
	border: 1px solid #e4e7ed;
	background: #fafafa;
	cursor: pointer;
}

.quote-checkbox-option input {
	margin: 0;
}

.quote-checkbox-option span {
	font-size: 12px;
	font-weight: 500;
}

.quote-summary-panel {
	position: sticky;
	top: 25px;
	padding: 25px;
	border: 1px solid #e4e7ed;
	background: #fff;
}

.quote-summary-panel > h2 {
	margin: 0 0 25px;
	font-size: 22px;
}

.quote-summary-step {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	margin-bottom: 20px;
}

.quote-summary-step > span {
	display: flex;
	flex: 0 0 30px;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #d10024;
	color: #fff;
	font-weight: 700;
}

.quote-summary-step strong {
	display: block;
	margin-bottom: 4px;
}

.quote-summary-step p {
	margin: 0;
	color: #777;
	font-size: 11px;
	line-height: 1.6;
}

.quote-safety-notice {
	display: flex;
	gap: 12px;
	margin: 25px 0;
	padding: 15px;
	border-left: 4px solid #f0ad4e;
	background: #fff8e5;
}

.quote-safety-notice .fa {
	color: #d58512;
	font-size: 18px;
}

.quote-safety-notice p {
	margin: 0;
	color: #6f5412;
	font-size: 11px;
	line-height: 1.6;
}

.quote-submit-button {
	width: 100%;
	margin-top: 20px;
	border: 0;
}

.quote-submit-button:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

.quote-return-store {
	display: block;
	margin-top: 15px;
	text-align: center;
}

.quote-summary-disclaimer {
	margin: 20px 0 0;
	color: #888;
	font-size: 10px;
	line-height: 1.6;
	text-align: center;
}

.quote-form-message {
	margin-bottom: 25px;
	padding: 15px 18px;
	border-left: 4px solid;
}

.quote-form-message.error {
	border-color: #d10024;
	background: #fff1f3;
	color: #9e001b;
}

.quote-form-message.success {
	border-color: #218838;
	background: #effaf2;
	color: #176327;
}

.quote-complete {
	padding: 50px 0;
}

.quote-complete-panel {
	max-width: 650px;
	margin: 0 auto;
	padding: 50px 35px;
	border: 1px solid #e4e7ed;
	background: #fff;
	text-align: center;
}

.quote-complete-panel > .fa {
	margin-bottom: 18px;
	color: #218838;
	font-size: 60px;
}

.quote-reference-number {
	display: block;
	margin: 12px 0 22px;
	color: #d10024;
	font-size: 22px;
}

.quote-development-warning {
	margin: 25px 0;
	padding: 15px;
	border: 1px solid #f0c36d;
	background: #fff8e5;
	color: #6f5412;
	font-size: 12px;
	line-height: 1.6;
}

@media only screen and (max-width: 991px) {
	.quote-summary-panel {
		position: static;
		margin-top: 10px;
	}
}

@media only screen and (max-width: 600px) {
	.quote-form-panel {
		padding: 18px;
	}

	.quote-checkbox-grid {
		grid-template-columns: 1fr;
	}

	.quote-selected-product {
		align-items: flex-start;
	}

	.quote-selected-product-image {
		flex-basis: 70px;
		width: 70px;
		height: 70px;
	}
}

/* Keep the quote summary visible on desktop */
@media only screen and (min-width: 992px) {
	.quote-layout-row {
		display: flex;
		align-items: stretch;
	}

	.quote-layout-row > .col-md-8,
	.quote-layout-row > .col-md-4 {
		float: none;
	}

	.quote-summary-panel {
		position: sticky;
		top: 25px;
		overflow-y: auto;
	}
}