/*
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
\*----------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}



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

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

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

a:hover, a:focus {
  color: #D10024;
  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: #D10024;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: #FFF;
}

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

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

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

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
  background-color: #E4E7ED;
  color: #D10024;
}

/*-- Select input --*/

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

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

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

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

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

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #E4E7ED;
  background: #FFF;
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #FFF;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #FFF;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
  background-color: #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;
}

/*----------------------------*\
	Section
\*----------------------------*/

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

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

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

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

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

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

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

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #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: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 30px;
}

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

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

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

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin-right: 10px;
}

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

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

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

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

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

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

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

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

.header-links li a:hover {
  color: #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 form {
  position: relative;
}

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

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

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

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

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #15161D;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: #FFF;
  }
}

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

.category-swiper {
  max-width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.category-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  height: 100%;
}

.category-card {
  width: 100%;
  max-width: 250px;
  height: 350px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
  border: none;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-img {
  height: 200px;
  background: #f8f9fa;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-img img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease-in-out;
}

.category-card:hover .category-img img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(183, 28, 28, 0.4), rgba(0, 0, 0, 0.3));
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
  border-radius: 10px;
}

.category-card:hover .overlay {
  opacity: 1;
}

.card-body {
  position: relative;
  z-index: 2;
}

/* Swiper Arrows */
.swiper-button-prev,
.swiper-button-next {
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, #b71c1c, #9d1a1a);
  color: #ffffff;
  border-radius: 50%;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2),
              0 0 0 2px rgba(255, 255, 255, 0.05) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  position: absolute;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}



.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: linear-gradient(145deg, #a31515, #8f1414);
  transform: translateY(-50%) scale(1.1);
}

/* Ensure no resizing on smaller devices — scale the card size */
@media (max-width: 768px) {
  .category-card {
    max-width: 180px;
    height: 300px;
  }

  .category-img {
    height: 160px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 12px;
  }
}



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

#hot-deal.section {
  padding: 40px 0;
  background: #f8f9fa;
}

.hot-deal-slide {
  padding: 30px 15px;
}

.hot-deal-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 20px;
}

.hot-deal-image img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  padding: 20px;
  background: #f0f0f0;
  border-radius: 8px;
}

.hot-deal-content {
  text-align: center;
  padding: 20px;
}

.hot-deal-label {
  font-size: 13px;
  font-weight: 600;
  color: #d10024;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hot-title {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hot-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.hot-deal-countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.hot-deal-countdown li {
  background: #d10024;
  color: #fff;
  border-radius: 8px;
  width: 60px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hot-deal-countdown .count {
  font-size: 20px;
  font-weight: bold;
}

.hot-deal-countdown small {
  font-size: 10px;
  text-transform: uppercase;
}

.hot-cta-btn {
  background: #d10024;
  color: #fff;
  border-radius: 25px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}

.hot-cta-btn:hover {
  background: #a8001d;
}

/* Responsive */
@media (max-width: 768px) {
  .hot-deal-box {
    flex-direction: column;
  }

  .hot-deal-content {
    padding-top: 30px;
  }

  .hot-deal-countdown li {
    width: 50px;
    height: 60px;
  }

  .hot-deal-countdown .count {
    font-size: 18px;
  }
}


/*=========================================================
	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>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: #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 {
  text-transform: uppercase;
  font-size: 12px;
  color: #8D99AE;
}

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

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

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #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: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

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

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

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

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

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #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;
}

/*----------------------------*\
	Widget product
\*----------------------------*/
.product-widget {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.product-widget:last-child {
  border-bottom: none;
}

.product-widget:hover {
  background-color: #f9f9f9;
  border-radius: 6px;
  padding-left: 5px;
}

.product-widget + .product-widget {
  margin: 20px 0 0 0;
}

/* Product image */
.product-widget .product-img {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 4px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-widget .product-img > img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Product content */
.product-widget .product-body {
  flex-grow: 1;
  min-height: 60px;
  padding-left: 5px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8D99AE;
  margin-bottom: 2px;
  font-weight: 500;
}

.product-widget .product-body .product-name {
  font-size: 13px;
  line-height: 1.2;
  margin: 2px 0;
  font-weight: 600;
  text-transform: capitalize;
}

.product-widget .product-body .product-name > a {
  color: #333;
  transition: color 0.2s ease;
  text-decoration: none;
}

.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;
  font-weight: 600;
  margin-top: 4px;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 12px;
  font-weight: 400;
  color: #8D99AE;
  margin-left: 6px;
  text-decoration: line-through;
}

/* Optional: Delete button */
.product-widget .delete {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 16px;
  width: 16px;
  line-height: 14px;
  font-size: 10px;
  background: #1e1f29;
  border: none;
  color: #FFF;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-widget .delete:hover {
  background: #D10024;
}


/*----------------------------*\
	Products slick
\*----------------------------*/
/* === PRODUCTS SLICK WRAPPER === */
.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

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

/* === TAB VISIBILITY LOGIC === */
.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;
}

/* === SLICK NAVIGATION POSITIONING === */
.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

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

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


/* === PRODUCT CARD STANDARDIZATION === */
.product {
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.product:hover {
  transform: translateY(-5px);
}

/* === PRODUCT IMAGE === */
.product-img {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.product-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* === PRODUCT BODY === */
.product-body {
  flex-grow: 1;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* === PRODUCT BUTTONS === */
.product-btns {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.add-to-cart {
  margin-top: 10px;
}

.add-to-cart-btn {
  width: 100%;
  border-radius: 5px;
}

/* === RESPONSIVE TWEAKS === */
@media (max-width: 768px) {
  .product {
    min-height: 440px;
  }

  .product-img {
    height: 160px;
  }

  .products-slick-nav .slick-prev,
  .products-slick-nav .slick-next {
    width: 18px;
    height: 18px;
  }

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

@media (max-width: 480px) {
  .product {
    min-height: 420px;
  }

  .product-img {
    height: 140px;
  }

  .add-to-cart-btn {
    font-size: 13px;
  }
}

/* Override slick default nav container */
.products-slick-nav.custom-slick-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* Custom styled slick buttons */
.products-slick-nav .slick-prev,
.products-slick-nav .slick-next {
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, #b71c1c, #9d1a1a);
  color: #ffffff;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2),
              0 0 0 2px rgba(255, 255, 255, 0.05) inset;
}

.products-slick-nav .slick-prev:before,
.products-slick-nav .slick-next:before {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.products-slick-nav .slick-prev:hover,
.products-slick-nav .slick-next:hover {
  background: linear-gradient(145deg, #a31515, #8f1414);
  transform: scale(1.1);
}

/* Responsive tweak */
@media (max-width: 576px) {
  .products-slick-nav .slick-prev,
  .products-slick-nav .slick-next {
    width: 30px;
    height: 30px;
  }

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



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

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

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

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

/*-- checkbox Filter --*/

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

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

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

/*-- Price Filter --*/

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

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

.noUi-connect {
  background-color: #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;
}

/*-- Store Sort --*/

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

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

/*-- Store Grid --*/

.store-grid {
  float: right;
}

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

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

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

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

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

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

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

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

.store-pagination li:hover {
  background-color: #E4E7ED;
  color: #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
\*----------------------------*/

/* Breadcrumb */
.breadcrumb-tree li a,
.breadcrumb-tree li.active {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
}

/* Image Gallery */
#product-main-img .product-preview img,
#product-imgs .product-preview img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

#product-main-img,
#product-imgs {
  background-color: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
}

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

#product-main-img:hover .slick-prev,
#product-main-img:hover .slick-next {
  opacity: 1;
  visibility: visible;
}

/* Product Details */
.product-details {
  padding: 20px;
  background-color: var(--accent-bg);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
}

.product-details .product-name {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

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

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

.product-details .product-price {
  font-size: 26px;
  color: var(--primary-color);
  margin: 15px 0;
  font-weight: bold;
}

.product-details .product-available {
  color: #28a745;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-details .add-to-cart {
  margin-top: 25px;
}

.product-details .add-to-cart .input-number {
  width: 100px;
  display: inline-block;
}

.add-to-cart-btn-details{
  background-color: #D10024;
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
  margin-left: 15px;
  position: relative;
}

.add-to-cart-btn-detailsi {
  margin-right: 8px;
}

.add-to-cart-btn-details:hover {
  background-color: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.product-btns,
.product-links {
  margin-top: 20px;
  font-size: 14px;
}

.product-btns li,
.product-links li {
  display: inline-block;
  margin-right: 15px;
  color: var(--text-muted);
}

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

.product-links a:hover,
.product-btns a:hover {
  color: var(--primary-color);
}

/* Share Icons */
.product-links a {
  color: var(--text-muted);
  transition: 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  .product-details {
    margin-top: 20px;
  }

  .add-to-cart-btn-details {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}

/* Tooltips and Hover States */
.tooltipp {
  font-size: 13px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Better section margin */
.section {
  padding-top: 40px;
  padding-bottom: 60px;
}




/*=========================================================
	09 -> Product Tabs
===========================================================*/

/* Tabs Navigation */
#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  text-align: center;
  padding: 15px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #E4E7ED;
}

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

.review-body{
  color: white;
}


#product-tab .tab-nav li a {
  font-weight: 700;
  color: #8D99AE;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 10px;
}

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

#product-tab .tab-nav li.active a::after,
#product-tab .tab-nav li a:hover::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #D10024;
}

/* Rating Section */
#rating .rating-avg {
  font-size: 28px;
  font-weight: 700;
  color: #D10024;
  margin-bottom: 15px;
}

.rating-stars {
  display: inline-block;
  margin-left: 10px;
}

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

.rating-stars i.fa-star-o {
  color: #E4E7ED;
}

.rating {
  list-style: none;
  padding: 0;
}

.rating li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.rating .rating-progress {
  flex: 1;
  height: 8px;
  background-color: #E4E7ED;
  border-radius: 4px;
  margin: 0 10px;
  overflow: hidden;
}

.rating .rating-progress > div {
  height: 100%;
  background-color: #D10024;
  transition: width 0.3s ease-in-out;
}

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


/* Tab Content Section */
.tab-content {
  background-color: #fff;
  border: 1px solid #e4e7ed;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
}

/* Common Paragraph Styling */
.tab-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

/* Section Headings */
.tab-content h5 {
  font-size: 17px;
  color: #d10024;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Tab Pane Transitions */
.tab-pane {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tab-pane.in.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .tab-content {
    padding: 20px 15px;
  }

  .tab-content p {
    font-size: 14px;
  }

  .tab-content h5 {
    font-size: 16px;
  }
}





/* Reviews List Container */
#reviews ul.reviews {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Individual Review Item */
.reviews li {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}

.reviews li:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Review Header */
.review-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.review-heading .name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.review-heading .date {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

/* Star Rating Inside Review */
.review-rating {
  margin-top: 5px;
}

.review-rating > i {
  color: #ccc;
  margin-right: 2px;
  font-size: 14px;
}

.review-rating > i.fa-star {
  color: #D10024; /* Dark red theme */
}

/* Review Body */
.review-body p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* Empty state */
.reviews li:only-child {
  text-align: center;
  font-style: italic;
  color: #999;
  font-size: 15px;
}

/* Responsive Enhancements */
@media screen and (max-width: 768px) {
  .reviews li {
    padding: 15px;
  }

  .review-heading .name {
    font-size: 15px;
  }

  .review-body p {
    font-size: 13px;
  }
}


/* Pagination */
.reviews-pagination {
  text-align: center;
  margin-top: 20px;
}

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

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

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

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

/* Review Form Container */
#review-form {
  background-color: #fdfdfd;
  padding: 20px;
  border: 1px solid #E4E7ED;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
}

/* Inputs & Textarea */
.review-form .input {
  margin-bottom: 15px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E4E7ED;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  color: #333;
  transition: border 0.2s;
}

.review-form .input:focus {
  border-color: #D10024;
  outline: none;
  box-shadow: 0 0 4px rgba(209, 0, 36, 0.2);
}

/* Rating Container */
.review-form .input-rating {
  margin-bottom: 20px;
}

.review-form .input-rating span {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

/* Star Rating Wrapper */
.review-form .stars {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  position: relative;
}

/* Hide native radio buttons */
.review-form .stars input[type="radio"] {
  display: none;
}

/* Star Labels (Font Awesome Icons) */
.review-form .stars label {
  font-size: 26px;
  color: #ccc;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}

/* Hover animation for stars */
.review-form .stars label:hover {
  color: #D10024;
  transform: scale(1.2);
}

/* Highlight stars on hover or checked */
.review-form .stars input[type="radio"]:checked ~ label,
.review-form .stars label:hover,
.review-form .stars label:hover ~ label {
  color: #D10024;
}

/* Optional: improve touch target on mobile */
.review-form .stars label::before {
  content: "\f005"; /* FontAwesome solid star */
  font-family: FontAwesome;
  display: inline-block;
}

/* Accessibility enhancement */
.review-form .stars label:focus {
  outline: 2px dashed #D10024;
  outline-offset: 2px;
}


/* Submit Button */
.primary-btn {
  display: inline-block;
  background-color: #D10024;
  color: #fff;
  padding: 12px 28px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.primary-btn:hover {
  background-color: #a00a1e;
  color: white;
}


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

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

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








/* category page */

.product-section {
  padding: 40px 0;
}

.category-heading {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
}

.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 10px;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

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

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

.product-labels {
  position: absolute;
  top: 10px;
  right: 10px;
}

.label-sale, .label-new {
  display: inline-block;
  font-size: 11px;
  background-color: #D10024;
  color: #fff;
  padding: 3px 6px;
  border-radius: 4px;
  margin-left: 5px;
  text-transform: uppercase;
}

.product-card-body {
  padding-top: 10px;
}

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

.product-name-text {
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0;
}

.product-name-text a:hover {
  color: #D10024;
}

.product-price-text {
  font-size: 16px;
  color: #D10024;
  margin-bottom: 8px;
}

.product-rating-stars {
  font-size: 14px;
  color: #FFD700;
}

.product-card-actions {
  margin-top: 10px;
}

.product-card-actions button {
  background: none;
  border: none;
  margin-right: 5px;
  color: #333;
  cursor: pointer;
  font-size: 14px;
}

.btn-add-to-cart {
  width: 100%;
  background-color: #D10024;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.btn-add-to-cart:hover {
  background-color: #b71c1c;
}

.no-products-message {
  color: #999;
  font-style: italic;
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-card-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .product-card-image {
    height: 180px;
  }
}






/* Hot deal page */

.hot-deals-container {
  background-color: #f9f9f9;
}

.hot-deals-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.deal-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  height: 100%;
  padding: 15px;
}

.deal-card:hover {
  transform: translateY(-5px);
}

.deal-image-container {
  text-align: center;
  background: #f4f4f4;
  padding: 10px;
  border-radius: 8px;
}

.deal-image {
  max-height: 180px;
  width: auto;
  object-fit: contain;
}

.deal-info {
  text-align: center;
  padding: 15px 5px 5px;
}

.deal-product-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #333;
}

.deal-category {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.deal-price {
  font-size: 16px;
  margin-bottom: 5px;
}

.deal-price-offer {
  color: #d10024;
  font-weight: 700;
  margin-right: 5px;
}

.deal-price-original {
  font-size: 14px;
  color: #999;
}

.deal-discount {
  font-size: 13px;
  color: #28a745;
  margin-bottom: 15px;
}

.deal-countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.deal-timer-circle {
  background: #d10024;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.deal-timer-circle span {
  font-size: 16px;
  font-weight: bold;
}

.deal-timer-circle small {
  font-size: 10px;
  text-transform: uppercase;
}

.deal-shop-btn {
  display: inline-block;
  background-color: #d10024;
  color: #fff;
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 30px;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease;
}

.deal-shop-btn:hover {
  background-color: #a50f1c;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .deal-timer-circle {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }
  .deal-timer-circle span {
    font-size: 14px;
  }
}








/* WISH LIST */

.product {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: 0.3s;
  background: #fff;
  padding: 15px;
}

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

.product-img img {
  max-width: 100%;
  border-radius: 8px;
}

.product-body {
  padding: 10px 0;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-price {
  color: #D10024;
  font-size: 16px;
  margin-bottom: 10px;
}

.product-btns a {
  margin-right: 10px;
}









/* authentication */

.auth-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  color: #d10024;
}

.auth-container .primary-btn {
  width: 100%;
  background-color: #d10024;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.auth-container .primary-btn:hover {
  background-color: #a00a1e;
}








/* cart */

.cart-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 15px;
}

.cart-table th,
.cart-table td {
  vertical-align: middle !important;
}

@media (max-width: 768px) {
  .cart-img {
    width: 60px;
    height: 60px;
  }

  .cart-table td {
    font-size: 14px;
  }
}






/* contact */

.contact-form input,
.contact-form textarea {
  border-radius: 0;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  padding: 10px;
}

.contact-form button {
  background-color: #D10024;
  color: white;
  padding: 10px;
  font-weight: bold;
  border-radius: 0;
  border: none;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #b8001f;
}

iframe {
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}







/* Privacy */

.privacy-content h4 {
  margin-top: 20px;
  font-weight: bold;
  color: #D10024;
}

.privacy-content p,
.privacy-content ul {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.privacy-content ul {
  padding-left: 20px;
}

.privacy-content ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}





/* order and returns */

.orders-returns-content h4 {
  margin-top: 25px;
  font-weight: bold;
  color: #D10024;
}

.orders-returns-content p,
.orders-returns-content ul {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.orders-returns-content ul {
  padding-left: 20px;
}

.orders-returns-content ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}




/* terms and condition  */

.terms-content h4 {
  margin-top: 25px;
  font-weight: bold;
  color: #D10024;
}

.terms-content p,
.terms-content ul {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.terms-content ul {
  padding-left: 20px;
}

.terms-content ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}
