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

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

Fonts: Montserrat

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

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

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

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
  line-height:0px;
  margin:0px;
  padding:0px;
}

.main-container{
  line-height:1.42857143;
}

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

.site-header-logo {
  display: inline-block;
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-header-logo-mobile {
  max-height: 32px;
}

.site-header-logo-footer {
  display: inline-block;
  max-height: 56px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .site-header-logo { max-height: 36px; }
  .site-header-logo-footer { max-height: 40px; }
}

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


.search-btn {
  height: 40px;  
  background: #D10024;
  color: #FFF;
  font-weight: 700;
  border: none;
  border-radius: 18px 11px 14px 3px;
}

.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;
  line-height: 1.9;
}

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

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

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 39%;
  background: #D10024;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: #D10024;
  opacity: 0.7;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
  position: relative;
  background-color: #E4E7ED;
  z-index: -1;
}

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

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

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

.shop .shop-body h3 {
  color: #FFF;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

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

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

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

span.badge {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

span.new {
  background-color: #D10024;
  border-color: #D10024;
  color: #FFF;
  padding: 4px;
}
span.sale {
  background-color: #FFF;
  border-color: #D10024;
  color: #D10024;
}


.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;
  justify-content: center;
}

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

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

.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}

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

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- checkbox Filter --*/

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

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

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

/*-- Price Filter --*/

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

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

.noUi-connect {
  background-color: #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 Sort: mobile icon button (default hidden on desktop) --*/
.store-sort-icon-wrap {
  display: none;
  position: relative;
}

.store-sort-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #E4E7ED;
  border-radius: 8px;
  background: #FFFFFF;
  color: #2B2D42;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  padding: 0;
}

.store-sort-icon-btn:hover,
.store-sort-icon-btn:focus-visible {
  background: #fff5f6;
  border-color: #D10024;
  color: #D10024;
  outline: none;
}

.store-sort-icon-btn[aria-expanded="true"] {
  background: #D10024;
  border-color: #D10024;
  color: #FFFFFF;
}

.store-sort-popup {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 50;
  min-width: 220px;
  padding: 6px;
  background: #FFFFFF;
  border: 1px solid #E4E7ED;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-sort-popup[hidden] {
  display: none !important;
}

.store-sort-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: #2B2D42;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.12s ease, color 0.12s ease;
  width: 100%;
}

.store-sort-option > i {
  width: 18px;
  text-align: center;
  color: #6c757d;
  font-size: 13px;
}

.store-sort-option:hover,
.store-sort-option:focus-visible {
  background: #fff5f6;
  color: #D10024;
  outline: none;
}

.store-sort-option:hover > i,
.store-sort-option:focus-visible > i {
  color: #D10024;
}

.store-sort-option.is-current {
  background: #fff5f6;
  color: #D10024;
  font-weight: 700;
}

.store-sort-option.is-current > i {
  color: #D10024;
}

.store-sort-option.is-current::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: auto;
  font-size: 12px;
  color: #D10024;
}

/* Mobile: show icon button, hide the native select + label */
@media (max-width: 767px) {
  .store-sort-label,
  .store-sort-select-wrap {
    display: none;
  }

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

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

.slider-for {
  width: 100%;
}

.slider-for .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

.slider-for .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

.slider-for .slick-prev, .slider-for .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slider-for:hover .slick-prev, .slider-for:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

.slider-for .zoomImg {
  background-color: #FFF;
}

/*----------------------------*\
  Product details
\*----------------------------*/

/* .product-gallery {
  display: flex;
  flex-direction: row;
  gap: 15px;
} */

.slider-for,
.slider-nav {
  display: block;
}

.slider-for .slick-slide,
.slider-nav .slick-slide {
  outline: none;
}

.slider-for img,
.slider-nav img {
  width: 100%;
  display: block;
}

.slider-nav {
  flex: 0 0 120px;
  margin-top: 15px;
}

.slider-nav .slick-slide {
  margin-bottom: 10px;
  cursor: pointer;
  border: 2px solid transparent;
}

.slider-nav .slick-slide.slick-current,
.slider-nav .slick-slide:hover {
  border-color: #D10024;
}

@media only screen and (max-width: 767px) {
  /* .product-gallery {
    flex-direction: column-reverse;
  }
   */
  .slider-nav {
    flex: 0 0 auto;
    max-height: none;
  }
  
  .slider-nav .slick-list {
    display: flex !important;
    flex-direction: row;
  }
  
  .slider-nav .slick-slide {
    margin: 0 5px;
  }
  
  .slider-nav .slick-prev {
    top: auto;
    bottom: -30px;
    left: 30px;
    transform: none;
  }
  
  .slider-nav .slick-next {
    top: auto;
    bottom: -30px;
    left: auto;
    right: 30px;
    transform: none;
  }
}

/*----------------------------*\
  Product details
\*----------------------------*/

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

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

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

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

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

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

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

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

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

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

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

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

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

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

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

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

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

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

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

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

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

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

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

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

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

/*-- Rating --*/

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

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

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

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

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

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

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

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

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

/*-- Reviews --*/

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Review Form --*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.newsletter {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer {
  margin: 30px 0px;
}

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

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

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

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

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

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

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

.footer-socials li a {
  color: #ffffff;
  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) {
  
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}

.text-white{
  color: #fff;
}

/* ========== Mobile Header Restructure ========== */

/* Sub-list inside drawer (categories under Categories link) */
.mobile-drawer-sublinks {
    list-style: none;
    margin: 4px 0 4px 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-drawer-sublinks a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 10px;
    color: #15161D;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    transition: background .15s, color .15s;
}

.mobile-drawer-sublinks a:hover,
.mobile-drawer-sublinks a.active {
    background: #E4E7ED;
    color: #D10024;
}

.mobile-drawer-sublinks a i {
    width: 14px;
    text-align: center;
    color: #D10024;
}

/* Mobile-only top header (phone + email) */
.top-header-mobile {
    display: none;
}

@media (max-width: 991px) {
    .top-header-desktop {
        display: none !important;
    }

    .top-header-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        padding: 8px 14px;
        background: #15161D;
        color: #fff;
        font-size: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .top-header-mobile::-webkit-scrollbar {
        display: none;
    }

    .top-header-mobile .top-header-mobile-links {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 14px;
    }

    .top-header-mobile .top-header-mobile-links li {
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .top-header-mobile .top-header-mobile-links a {
        color: #fff;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color .15s;
    }

    .top-header-mobile .top-header-mobile-links a:hover,
    .top-header-mobile .top-header-mobile-links a:focus {
        color: #D10024;
    }

    .top-header-mobile .top-header-mobile-links a i {
        color: #D10024;
        font-size: 13px;
    }
}

/* Main header: hide desktop, show mobile bar on <=991 */
.main-header-mobile {
    display: none;
}

@media (max-width: 991px) {
    #header {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 991px) {
    .main-header-desktop {
        display: none !important;
    }

    .main-header-mobile {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0px 6px;
        background: #15161D;
        color: #fff;
        border-bottom: 1px solid #23243A;
    }

    .main-header-mobile .mobile-logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        text-align: center;
        color: #fff;
        text-decoration: none;
        min-width: 0;
    }

    .main-header-mobile .mobile-logo img {
        max-height: 55px;
        width: auto;
    }

    .main-header-mobile .mobile-logo h2 {
        font-size: 16px;
        margin: 0;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 800;
    }

    .header-action-btn {
        position: relative;
        width: 40px;
        height: 60px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: transparent;
        color: #fff;
        border-radius: 10px;
        text-decoration: none;
        font-size: 18px;
        cursor: pointer;
        flex: 0 0 auto;
        transition: background .15s;
    }

    .header-action-btn:hover,
    .header-action-btn:focus {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        outline: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    /* Cart badge styled for mobile top bar */
    .main-header-mobile .cart-badge {
        position: absolute;
        top: 4px;
        right: 4px;
        background: #D10024;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
}

/* Hide desktop main-nav strip on mobile (drawer replaces it) */
@media (max-width: 991px) {
    .nav-desktop,
    #navigation {
        display: none !important;
    }
}

/* Mobile search overlay (legacy — kept hidden, drawer search replaces it) */
.mobile-search-overlay {
    display: none !important;
}

/* ========== Mobile Drawer ========== */
:root {
    --bg-light: #E4E7ED;
    --text: #15161D;
    --primary: #D10024;
    --border: #E4E7ED;
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.mobile-drawer.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
}

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 340px);
    background: #fff;
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.16);
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.is-open .mobile-drawer-panel {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #E4E7ED;
}

.mobile-drawer-title {
    font-size: 18px;
    font-weight: 800;
    color: #15161D;
}

.mobile-drawer-close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: #E4E7ED;
    color: #15161D;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-drawer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 14px 16px;
    border-radius: 14px;
    color: #15161D;
    text-decoration: none;
    font-weight: 600;
    background: #fff;
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
    background: #E4E7ED;
    color: #D10024;
}

.mobile-drawer-links a i {
    width: 18px;
    text-align: center;
    color: #D10024;
}

.mobile-drawer-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E4E7ED;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-drawer-meta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-drawer-meta-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c757d;
}

.mobile-drawer-meta-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-drawer-meta-options a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #15161D;
    background: #E4E7ED;
    border: 1px solid #E4E7ED;
    font-size: 13px;
    font-weight: 700;
}

.mobile-drawer-meta-options a.active {
    color: #fff;
    background: #D10024;
    border-color: #D10024;
}

.mobile-drawer-account-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    background: #D10024;
    font-weight: 700;
}

.mobile-drawer-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    color: #15161D;
    background: #E4E7ED;
    border: 1px solid #E4E7ED;
    font-weight: 700;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 0;
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 991px) {
    .mobile-menu-toggle,
    .mobile-menu-toggle i {
        color: #fff;
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:hover i {
        color: #fff;
    }
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle:hover {
    background: #E4E7ED;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #D10024;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== Drawer search mode ========== */
.mobile-drawer-back {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #E4E7ED;
    color: #15161D;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mobile-drawer[hidden],
.mobile-drawer-search[hidden],
.mobile-drawer-back[hidden] {
    display: none;
}

.mobile-drawer-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.mobile-drawer.is-searching .mobile-drawer-body {
    display: none;
}

.mobile-drawer-search {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.mobile-drawer-search-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: #fff;
    border: 1px solid #E4E7ED;
    border-radius: 14px;
}

.mobile-drawer-search-icon {
    color: #D10024;
    font-size: 14px;
    flex: 0 0 auto;
}

.mobile-drawer-search-input {
    flex: 1;
    height: 38px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #15161D;
    min-width: 0;
}

.mobile-drawer-search-input::placeholder {
    color: #9aa0a6;
}

.mobile-drawer-search-clear {
    border: none;
    background: transparent;
    color: #9aa0a6;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.mobile-drawer-search-clear:hover {
    color: #15161D;
    background: #E4E7ED;
}

.mobile-drawer-search-status {
    padding: 6px 12px 10px;
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
}

.mobile-drawer-search-status i {
    margin-right: 4px;
    color: #D10024;
}

.mobile-drawer-search-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 4px 8px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.mobile-drawer-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 8px 10px;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: #15161D;
    border: 1px solid #E4E7ED;
    transition: background .15s, border-color .15s;
}

.mobile-drawer-search-item:hover,
.mobile-drawer-search-item:focus {
    background: #E4E7ED;
    border-color: #D10024;
}

.mobile-drawer-search-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    background: #E4E7ED;
    flex: 0 0 auto;
}

.mobile-drawer-search-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-drawer-search-name {
    font-size: 14px;
    font-weight: 600;
    color: #15161D;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.mobile-drawer-search-mark {
    background: rgba(209, 0, 36, 0.15);
    color: #D10024;
    font-weight: 800;
    border-radius: 3px;
    padding: 0 2px;
}

.mobile-drawer-search-price {
    font-size: 13px;
    font-weight: 800;
    color: #D10024;
}

.mobile-drawer-search-old {
    color: #9aa0a6;
    font-weight: 500;
    margin-left: 6px;
}

.mobile-drawer-search-viewall {
    margin: 8px 4px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 14px;
    background: #D10024;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    flex: 0 0 auto;
    transition: background .15s, transform .1s;
}

.mobile-drawer-search-viewall:hover,
.mobile-drawer-search-viewall:focus {
    background: #b3001f;
    color: #fff;
}

.mobile-drawer-search-viewall:active {
    transform: scale(0.98);
}

.mobile-drawer-search-viewall i {
    font-size: 14px;
}

/* ========== Mobile Cart Drawer ========== */
.mobile-cart-drawer .mobile-drawer-panel {
    width: min(92vw, 380px);
    display: flex;
    flex-direction: column;
    overflow: hidden;  /* don't let the panel scroll — only .cart-list scrolls */
}
.mobile-cart-drawer .mobile-drawer-header {
    flex: 0 0 auto;  /* keep header at fixed height */
}

.mobile-cart-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    max-height: none;
    z-index: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;  /* prevent the whole panel from scrolling; only .cart-list scrolls */
}

.mobile-cart-drawer .cart-list {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 4px 4px 8px;
}

.mobile-cart-drawer .product-widget {
    background: #fff;
    border: 1px solid #E4E7ED;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 8px;
}

.mobile-cart-drawer .product-widget .product-img > img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.mobile-cart-drawer .product-widget .product-body .product-name a {
    font-size: 14px;
    font-weight: 600;
    color: #15161D;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.mobile-cart-drawer .product-widget .product-body .product-price {
    font-size: 14px;
    color: #D10024;
    margin-top: 4px;
}

.mobile-cart-drawer .product-widget .product-body .product-price .qty {
    color: #15161D;
    font-weight: 700;
    margin-right: 4px;
}

.mobile-cart-drawer .product-widget .delete {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

.mobile-cart-drawer .cart-summary {
    flex: 0 0 auto;  /* never shrink — always at fixed size */
    background: #fff;
    border: 1px solid #E4E7ED;
    border-radius: 12px;
    padding: 12px 14px;
    margin: 0 4px 8px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}

.mobile-cart-drawer .cart-summary small {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
}

.mobile-cart-drawer .cart-summary h5 {
    font-size: 15px;
    color: #15161D;
    font-weight: 800;
    margin: 4px 0 0;
}

.mobile-cart-drawer .cart-btns {
    flex: 0 0 auto;  /* never shrink — sticky at bottom */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 4px 4px 16px;
    background: #fff;
    border-top: 1px solid #E4E7ED;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    bottom: 0;
    z-index: 2;
}

.mobile-cart-drawer .cart-btns > a {
    /* display: inline-flex; */
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #15161D;
    background: #E4E7ED;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background .15s;
}

.mobile-cart-drawer .cart-btns > a:first-child {
    color: #15161D;
    background: #E4E7ED;
}

.mobile-cart-drawer .cart-btns > a:last-child {
    color: #fff;
    background: #D10024;
}

.mobile-cart-drawer .cart-btns > a:hover {
    filter: brightness(0.95);
    color: inherit;
}

.mobile-cart-drawer .cart-btns > a:last-child:hover {
    color: #fff;
    filter: brightness(0.9);
}

.mobile-cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
    gap: 12px;
}

.mobile-cart-empty i {
    font-size: 56px;
    color: #E4E7ED;
}

.mobile-cart-empty p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.mobile-cart-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #D10024;
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    margin-top: 8px;
    transition: background .15s;
}

.mobile-cart-cta:hover {
    background: #b3001f;
    color: #fff !important;
}



 
.product-card-image  img ,.hp-card-media img{
  width:100px;
}

.shop-body h3{
font-size:1.4em;
}



.shop-img { height: 250px; overflow: hidden; }
.shop-img img { width: 100%; height: 100%; object-fit: cover; }

.product {
  height:max-content;
  max-height: 500px; /* Apne hisaab se adjust karein */
  display: flex;
  flex-direction: column;
}

.product-body {
  flex: 1;
}

.product-name {
  min-height: 48px; /* Title ki height fix karein */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
 .product-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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














/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    z-index: 900;
}
.announcement-bar-inner {
    padding: 10px 40px 10px 16px;
    text-align: center;
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.announcement-text { display: inline; }
.announcement-link {
    text-decoration: underline;
    font-weight: 600;
    margin-left: 8px;
}
.announcement-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.announcement-close:hover { opacity: 1; }
.announcement-bar.is-marquee .announcement-bar-inner {
    overflow: hidden;
    padding-right: 40px;
}
.announcement-marquee {
    display: flex;
    white-space: nowrap;
    animation: announcementMarquee 22s linear infinite;
}
.announcement-marquee span { padding-right: 40px; }
@keyframes announcementMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}







.whatsapp-cta {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 1090;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.whatsapp-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta:focus-visible {
    outline: 3px solid rgba(13, 158, 113, 0.35);
    outline-offset: 3px;
}

.whatsapp-cta-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.whatsapp-cta-label {
    line-height: 1.1;
    white-space: nowrap;
}

.locale-rtl .whatsapp-cta {
    right: auto;
    left: 18px;
}

@media (max-width: 768px) {
    .whatsapp-cta {
        right: 12px;
        bottom: 82px;
        padding: 10px;
    }

    .locale-rtl .whatsapp-cta {
        right: auto;
        left: 12px;
    }

    .whatsapp-cta-label {
        display: none;
    }
}

/* ============================================
   Toast notifications — theme-matched
   ============================================ */
#toast-container {
    position: fixed;
    top: 18px;
    right: 18px;
    left: auto;
    z-index: 2147483647;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
    max-width: calc(100vw - 36px);
}

#toast-container .toast {
    pointer-events: auto;
}

.toast {
    position: relative;
    z-index: 1;
    max-width: min(380px, calc(100vw - 36px));
    min-width: 260px;
    margin-bottom: 12px;
    padding: 14px 16px 14px 18px;
    background: #ffffff;
    color: #1f2937;
    border-radius: 14px;
    box-shadow:
        0 12px 32px rgba(15, 23, 42, 0.12),
        0 2px 6px rgba(15, 23, 42, 0.06),
        0 0 0 1px rgba(15, 23, 42, 0.04);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
    transform: translate3d(20px, -12px, 0) scale(0.96);
    transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    border-left: 4px solid #0d9e71;
    will-change: opacity, transform;
}

.toast.show {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
}

/* Subtle inner glow that fades in */
.toast::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.32s ease;
}

.toast.show::before {
    opacity: 1;
}

/* Success — theme primary green */
.toast.success {
    border-left-color: #0d9e71;
    color: #0f5132;
    background: #ffffff;
}

.toast.success .toast-icon {
    color: #0d9e71;
    background: rgba(13, 158, 113, 0.12);
}

/* Error — soft red */
.toast.error {
    border-left-color: #dc2626;
    color: #7f1d1d;
    background: #ffffff;
}

.toast.error .toast-icon {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.12);
}

/* Info — theme dark accent */
.toast.info {
    border-left-color: #1a1a2e;
    color: #1f2937;
    background: #ffffff;
}

.toast.info .toast-icon {
    color: #1a1a2e;
    background: rgba(26, 26, 46, 0.08);
}

.toast .toast-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    margin-top: 1px;
}

.toast .toast-message {
    flex: 1;
    min-width: 0;
    padding-top: 7px;
}

.toast .toast-message strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 2px;
    font-weight: 700;
}

.toast .toast-close {
    flex-shrink: 0;
    background: transparent;
    border: 0;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    margin: -4px -4px -4px 0;
    font-size: 14px;
    line-height: 1;
    border-radius: 6px;
    transition: color 0.15s ease, background 0.15s ease;
}

.toast .toast-close:hover,
.toast .toast-close:focus {
    color: #374151;
    background: rgba(15, 23, 42, 0.06);
}

/* Progress bar that drains over the toast lifetime */
.toast .toast-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(13, 158, 113, 0.5);
    border-radius: 0 0 14px 14px;
    transform-origin: left center;
    animation: toast-progress 3s linear forwards;
}

.toast.error .toast-progress {
    background: rgba(220, 38, 38, 0.5);
}

.toast.info .toast-progress {
    background: rgba(26, 26, 46, 0.4);
}

@keyframes toast-progress {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

@media (max-width: 480px) {
    #toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        align-items: stretch;
        max-width: none;
    }
    .toast {
        max-width: none;
        min-width: 0;
        font-size: 13px;
        padding: 12px 14px 14px 16px;
        border-radius: 12px;
    }
    .toast .toast-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* ============================================
   Rich Add-to-Cart Toast (theme-matched)
   ============================================ */
.toast.toast-cart-add {
    min-width: 320px;
    max-width: min(380px, calc(100vw - 36px));
    padding: 14px 16px 12px 18px;
    border-left: 4px solid #0d9e71;
    align-items: flex-start;
}
.toast.toast-cart-add .toast-cart-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.toast.toast-cart-add .toast-cart-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f5132;
    display: flex;
    align-items: center;
    gap: 6px;
}
.toast.toast-cart-add .toast-cart-title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #0d9e71;
    border-radius: 50%;
    margin-right: 2px;
    animation: toastCartPulse 1.4s ease-in-out infinite;
}
@keyframes toastCartPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.6; }
}
.toast.toast-cart-add .toast-cart-product {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}
.toast.toast-cart-add .toast-cart-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 18px;
}
.toast.toast-cart-add .toast-cart-img-placeholder {
    background: linear-gradient(135deg, #f0f9f4 0%, #d1fae5 100%);
    color: #0d9e71;
}
.toast.toast-cart-add .toast-cart-info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.toast.toast-cart-add .toast-cart-name {
    font-size: 13px;
    font-weight: 600;
    color: #15161D;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.toast.toast-cart-add .toast-cart-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
}
.toast.toast-cart-add .toast-cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 1px 7px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    color: #15803d;
    font-weight: 600;
    font-size: 11px;
}
.toast.toast-cart-add .toast-cart-qty i {
    font-size: 9px;
}
.toast.toast-cart-add .toast-cart-price {
    color: #D10024;
    font-weight: 700;
    font-size: 13px;
}
.toast.toast-cart-add .toast-cart-summary {
    font-size: 12px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    padding-top: 6px;
    border-top: 1px dashed #e5e7eb;
}
.toast.toast-cart-add .toast-cart-summary i {
    color: #D10024;
    font-size: 12px;
}
.toast.toast-cart-add .toast-cart-summary strong {
    color: #15161D;
    font-weight: 700;
}
.toast.toast-cart-add .toast-cart-count {
    color: #9ca3af;
    margin-left: auto;
}
.toast.toast-cart-add .toast-cart-actions {
    display: flex;
    align-items: center;
    margin-top: 4px;
}
.toast.toast-cart-add .toast-cart-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #D10024;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s ease;
    flex: 1;
    justify-content: center;
}
.toast.toast-cart-add .toast-cart-action:hover {
    background: #b8001f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(209, 0, 36, 0.3);
}
.toast.toast-cart-add .toast-cart-action i {
    font-size: 11px;
}

/* Mobile: make the rich toast use full width */
@media (max-width: 480px) {
    .toast.toast-cart-add {
        min-width: 0;
        max-width: none;
    }
    .toast.toast-cart-add .toast-cart-img {
        width: 42px;
        height: 42px;
    }
}

/* RTL: flip to top-left */
.locale-rtl #toast-container {
    right: auto;
    left: 18px;
    align-items: flex-start;
}

.locale-rtl .toast {
    transform: translate3d(-20px, -12px, 0) scale(0.96);
    border-left: none;
    border-right: 4px solid #0d9e71;
}

.locale-rtl .toast.show {
    transform: translate3d(0, 0, 0) scale(1);
}

.locale-rtl .toast.success { border-right-color: #0d9e71; }
.locale-rtl .toast.error   { border-right-color: #dc2626; }
.locale-rtl .toast.info    { border-right-color: #1a1a2e; }


.PopularViewAllButton{
  margin-top:55px;
}
@media (max-width: 480px) {
    .locale-rtl #toast-container {
        right: 12px;
        left: 12px;
        align-items: stretch;
    }
    .locale-rtl .toast {
        border-right: none;
        border-left: 4px solid #0d9e71;
    }
    .add-to-cart{
      display:none;
    }
    
  .PopularViewAllButton{
    margin-top:100px;
  }

  .shop .shop-body {
      position: absolute;
      top: 0;
      width: 75%;
      padding: 12px;
      z-index: 10;
    }
    .shop-body h3{
      font-size: 1em;
    }

}

/* Honour reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .toast,
    .toast .toast-progress {
        transition: none;
        animation: none;
    }
    .toast { transform: none; }
    .toast.show { transform: none; }
}

/* =============================================================
 * Universal Offers & Promotions Engine — product page badges
 * ============================================================= */
.promo-offers { margin: 12px 0 18px; }
.promo-offer-card {
    border: 1px solid #f0c878;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff8e8 0%, #fff3dc 100%);
    padding: 10px 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.promo-offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #f59e0b, #d97706);
}
.promo-offer-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 0.72em;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(217, 119, 6, 0.3);
}
.promo-offer-body { flex: 1; min-width: 0; }
.promo-offer-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.95em;
    margin-bottom: 2px;
}
.promo-offer-detail {
    color: #6b6b6b;
    font-size: 0.88em;
    margin-bottom: 2px;
}
.promo-offer-detail strong { color: #c83232; font-weight: 800; }
.promo-offer-cap { color: #8a5a16; font-style: italic; margin-left: 4px; font-size: 0.92em; }
.promo-offer-message { color: #4b5563; font-size: 0.82em; font-style: italic; }
.promo-tier-list { list-style: none; margin: 0; padding: 0; font-size: 0.92em; }
.promo-tier-list li { padding: 1px 0; color: #4b5563; }
.promo-tier-list li strong { color: #c83232; }
.promo-quantity-hint {
    margin-top: 8px;
    padding: 8px 12px;
    background: #fef3c7;
    border: 1px dashed #d97706;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.88em;
    font-weight: 600;
}
.promo-quantity-hint i { color: #d97706; margin-right: 4px; }

/* Bundle deals on product cards */
.product-card-promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.72em;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.4);
}
.product-card-promo-msg {
    color: #16a34a;
    font-weight: 700;
    font-size: 0.78em;
    margin-top: 4px;
    text-align: center;
    line-height: 1.2;
}