/*
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;
}

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;
  display: flex;

}

.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;
}

/*----------------------------*\
  Department dropdown (pure CSS)
\*----------------------------*/

@media (min-width: 992px) {
  /* ── Parent trigger ── */
  .main-nav > li.has-dropdown {
    position: relative;
  }

  /* Caret indicator */
  .main-nav > li.has-dropdown > a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-inline-start: 6px;
    vertical-align: middle;
    opacity: 0.6;
    transition: transform 0.2s ease;
  }

  .main-nav > li.has-dropdown:hover > a::before {
    transform: rotate(180deg);
  }

  /* ── Dropdown panel ── */
  .custom-dropdown-menu {
    position: absolute;
    inset-block-start: 100%;   /* top: 100% — logical */
    inset-inline-start: 0;     /* left: 0 in LTR, right: 0 in RTL — logical */
    min-width: 210px;
    background: #fff;
    border-top: 2px solid #D10024;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 6px 0;
    list-style: none;
    margin: 0;
    z-index: 100;

    /* Overflow constraint — caps at 400 px or 60 vh on smaller laptops */
    max-height: min(400px, 60vh);
    overflow-y: auto;

    /* Firefox thin scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #D10024 #f0f0f0;

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  /* ── Custom webkit scrollbar ── */
  .custom-dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }

  .custom-dropdown-menu::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 0 0 6px 0;
  }

  .custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: #D10024;
    border-radius: 3px;
  }

  .custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #a8001c;
  }

  /* Visible state — triggered by hovering the parent <li> */
  .main-nav > li.has-dropdown:hover > .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* ── Dropdown items ── */
  .custom-dropdown-menu > li > a {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s, padding-inline-start 0.15s;
  }

  .custom-dropdown-menu > li > a:hover,
  .custom-dropdown-menu > li > a.active {
    color: #D10024;
    background: #fdf2f4;
    padding-inline-start: 24px;
  }

  /* ── RTL: flip the panel to the inline-end side ── */
  [dir="rtl"] .custom-dropdown-menu {
    inset-inline-start: auto;
    inset-inline-end: 0;
  }
}

/*----------------------------*\
	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
===========================================================*/

/* ── Modern uniform .shop card ── */
.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
}

.shop .shop-img {
  position: absolute;
  inset: 0;
  background-color: #E4E7ED;
}

.shop .shop-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.shop:hover .shop-img>img {
  transform: scale(1.08);
}

.shop .shop-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 10;
}

.shop .shop-body h3 {
  color: #FFF;
  margin-bottom: 6px;
  transition: all 0.4s ease;
}

.shop .shop-body .cta-btn {
  color: #FFF;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.shop .shop-body .cta-btn i {
  transition: transform 0.4s ease, color 0.4s ease;
}

/* ── Hover micro-interactions ── */
.shop:hover .shop-body h3 {
  transform: translateY(-5px);
  color: #FFF;
}

.shop:hover .shop-body .cta-btn {
  transform: translateY(-3px);
  color: #D10024;
  opacity: 1;
  filter: brightness(1.15);
}

.shop:hover .shop-body .cta-btn i {
  transform: translateX(6px);
  color: #D10024;
}

/*=========================================================
	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: end;
}

.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;
}

.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: 30px;
  height: 35px;
  line-height: 35px;
  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: white;
  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 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
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev,
#product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev,
#product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #FFF;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
  border-color: #D10024;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: 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: #D10024;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #D10024;
  border-color: #D10024;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: 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;
}

/*=========================================================
	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;
  }
}

/*=========================================================
    ABOUT PAGE
===========================================================*/

/* -- Hero Banner ----------------------------------------- */
.about-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  overflow: hidden;
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.about-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 0, 36, 0.18) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation: heroPulse 6s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroPulse {
  from {
    transform: scale(1) translate(0, 0);
  }

  to {
    transform: scale(1.15) translate(-30px, 30px);
  }
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 2px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.about-hero-content .hero-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #D10024, #ff3355);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.about-hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* -- Section Spacing ------------------------------------ */
.about-section {
  padding: 70px 0;
}

.about-section-alt {
  background: #f8f9fb;
  padding: 70px 0;
}

.section-heading {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 12px;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #D10024, #ff3355);
  border-radius: 2px;
  margin-top: 10px;
}

.section-sub {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* -- Our Story ------------------------------------------ */
.story-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.story-text {
  flex: 1;
  min-width: 280px;
}

.story-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}

.story-text .about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #D10024, #ff3355);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.story-image {
  flex: 1;
  min-width: 280px;
}

.story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: block;
  object-fit: cover;
}

/* -- Specialty Cards ------------------------------------ */
.specialty-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  margin-bottom: 24px;
  height: 100%;
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(209, 0, 36, 0.18);
}

.specialty-card .icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(209, 0, 36, 0.1), rgba(255, 51, 85, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}

.specialty-card:hover .icon-wrap {
  background: linear-gradient(135deg, #D10024, #ff3355);
}

.specialty-card .icon-wrap i {
  font-size: 32px;
  color: #D10024;
  transition: color 0.3s;
}

.specialty-card:hover .icon-wrap i {
  color: #fff;
}

.specialty-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
}

.specialty-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

/* -- Trust Stats Banner --------------------------------- */
.stats-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 0, 36, 0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.stats-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 51, 85, 0.08) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 10px;
}

.stat-item .stat-number {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .stat-accent {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #D10024;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(209, 0, 36, 0.12);
  border: 1px solid rgba(209, 0, 36, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.stat-item .stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* -- Branch Cards --------------------------------------- */
.branch-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 24px;
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.branch-map-frame {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.branch-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.branch-map-frame .branch-number {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #D10024, #ff3355);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
}

.branch-card-body {
  padding: 24px;
}

.branch-card-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.branch-card-body p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin: 0 0 20px;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #D10024, #ff3355);
  color: #fff;
  padding: 11px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
}

.btn-map:hover,
.btn-map:focus {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(209, 0, 36, 0.35);
}

/* -- Responsive ----------------------------------------- */
@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 32px;
  }

  .about-hero-content p {
    font-size: 15px;
  }

  .stat-item .stat-number {
    font-size: 38px;
  }

  .story-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

/*=========================================================
    HOME PAGE — Migrated from @push('styles')
===========================================================*/

/* ── Crossfade image hover (product cards) ── */
.product-crossfade-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  /* Enforce a strict 1:1 square bounding box so varying image aspect
     ratios (tall appliances, wide electronics, etc.) never stretch the
     Slick Carousel row height. Images scale proportionally inside. */
  aspect-ratio: 1 / 1;
  /* Fallback for browsers without aspect-ratio support */
  width: 100%;
}

/* Absolute-fill trick so the padding-top fallback still works */
.product-crossfade-wrap>a,
.product-crossfade-wrap>a:first-child {
  display: block;
  width: 100%;
  height: 100%;
}

.product-crossfade-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.45s ease;
}

.product-crossfade-wrap .product-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product:hover .product-crossfade-wrap.has-hover .product-img-hover {
  opacity: 1;
}

.product:hover .product-crossfade-wrap.has-hover>img:first-child {
  opacity: 0;
}

/* ── Premium add-to-cart panel anchored to product-img ── */
.product .product-img {
  position: relative;
  overflow: hidden;
}

.product .add-to-cart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 10px;
  background: rgba(15, 15, 25, 0.85);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}

.product:hover .add-to-cart {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* ── Premium pill button ── */
.product .add-to-cart .add-to-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 100px;
  background: linear-gradient(135deg, #D10024 0%, #ff3355 55%, #ff1744 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
  width: 100%;
  justify-content: center;
}

/* Shimmer sweep */
.product .add-to-cart .add-to-cart-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg,
      transparent 35%,
      rgba(255, 255, 255, 0.28) 50%,
      transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

/* Glow ring */
.product .add-to-cart .add-to-cart-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #ff1744, #D10024, #ff3355);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  filter: blur(6px);
}

.product .add-to-cart .add-to-cart-btn:hover::before {
  transform: translateX(100%);
}

.product .add-to-cart .add-to-cart-btn:hover {
  box-shadow: 0 4px 20px rgba(209, 0, 36, 0.55),
    0 0 0 1px rgba(255, 80, 100, 0.4);
  transform: translateY(-2px);
}

.product .add-to-cart .add-to-cart-btn:hover::after {
  opacity: 0.6;
}

.product .add-to-cart .add-to-cart-btn:active {
  transform: translateY(0px) scale(0.97);
  box-shadow: 0 2px 10px rgba(209, 0, 36, 0.4);
}

/* Cart icon */
.product .add-to-cart .add-to-cart-btn>i {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 3px 6px 3px 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 13px;
  color: #fff;
  opacity: 1;
  visibility: visible;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  transform: scale(1.2) rotate(-8deg);
}

.product .add-to-cart .add-to-cart-btn>i~* {
  padding-right: 12px;
}

/* ── Top Selling tab layout ── */
.top-selling-section {
  padding: 40px 0;
}

#top-selling-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

#top-selling-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

/* ── Premium slick slider arrows ── */
.products-slick {
  padding: 0 35px !important;
  position: relative;
}

.products-slick .slick-prev,
.products-slick .slick-next {
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 40px !important;
  height: 40px !important;
  border: 1px solid #E4E7ED !important;
  background-color: #FFF !important;
  border-radius: 50% !important;
  z-index: 99 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.3s ease !important;
}

.products-slick .slick-prev {
  left: 10px !important;
  right: auto !important;
}

.products-slick .slick-next {
  right: 10px !important;
  left: auto !important;
}

/* Arrow icon styling */
.products-slick .slick-prev:before,
.products-slick .slick-next:before {
  font-family: FontAwesome !important;
  color: #2B2D42 !important;
  font-size: 16px !important;
  opacity: 1 !important;
}

.products-slick .slick-prev:before {
  content: "\f104" !important;
}

.products-slick .slick-next:before {
  content: "\f105" !important;
}

/* Hover States */
.products-slick .slick-prev:hover,
.products-slick .slick-next:hover {
  background-color: #D10024 !important;
  border-color: #D10024 !important;
}

.products-slick .slick-prev:hover:before,
.products-slick .slick-next:hover:before {
  color: #FFF !important;
}

.products-slick .slick-prev.slick-disabled,
.products-slick .slick-next.slick-disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* ── Language Dropdown (Migrated & Fixed Hover Dead Zone) ── */
#top-header {
  position: relative;
  z-index: 1040 !important;
}

.language-dropdown {
  position: relative !important;
}

.language-dropdown .dropdown-menu {
  background-color: #1E1F29 !important;
  border: 1px solid #2B2D42 !important;
  border-radius: 0 !important;
  padding: 10px 0 5px 0 !important;
  /* increased padding-top to bridge any hover gap */
  margin-top: 0 !important;
  /* sits flush with top header */
  min-width: fit-content !important;
  display: none;
  z-index: 9999 !important;
}

.language-dropdown.open .dropdown-menu,
.language-dropdown:hover .dropdown-menu {
  display: block !important;
}

.language-dropdown .dropdown-menu li a.lang-item {
  color: #FFF !important;
  padding: 8px 15px !important;
  display: block !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: background-color 0.2s, color 0.2s !important;
}

.language-dropdown .dropdown-menu li a.lang-item:hover {
  background-color: #D10024 !important;
  color: #FFF !important;
}

/* Simple styling for caret */
.language-dropdown a.dropdown-toggle i.fa-caret-down {
  margin-left: 3px;
}

/* ==========================================================
   HOT DEALS PAGE � Animations
   ========================================================== */

@keyframes orb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 20px) scale(1.15);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

@keyframes floatImg {

  0%,
  100% {
    transform: translateY(0px) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

/* Product grid pop-in for hot deals page */
#hot-deals-grid .product-grid-item {
  opacity: 0;
  transform: scale(0.96) translateY(8px);
  animation: popInCard 0.35s ease forwards;
}



/* ── Filter Sidebar ──────────────────────────────────────── */
.filter-form {
  position: relative;
}

.filter-aside {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.filter-aside-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  cursor: pointer;
  user-select: none;
  border: none;
  width: 100%;
  text-align: left;
}

.filter-aside-header h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.filter-aside-header .toggle-icon {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  transition: transform 0.3s ease;
}

.filter-aside-header.collapsed .toggle-icon {
  transform: rotate(-90deg);
}

.filter-aside-body {
  padding: 14px 16px;
  background: #fafafa;
  border-top: none;
}

/* ── Checkbox Items ──────────────────────────────────────── */
.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 4px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

.filter-item:hover {
  background: #f0f0f0;
}

.filter-item input[type="checkbox"] {
  display: none;
}

.filter-item .filter-check {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.filter-item input[type="checkbox"]:checked~.filter-check,
.filter-item.is-checked .filter-check {
  background: #D10024;
  border-color: #D10024;
}

.filter-item .filter-check::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: none;
}

.filter-item input[type="checkbox"]:checked~.filter-check::after,
.filter-item.is-checked .filter-check::after {
  display: block;
}

.filter-item .filter-label {
  font-size: 13px;
  color: #444;
  font-weight: 500;
  flex: 1;
}

.filter-item .filter-count {
  font-size: 11px;
  color: #999;
  background: #eee;
  padding: 1px 6px;
  border-radius: 20px;
}

/* ── Active Filter Tags ──────────────────────────────────── */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #D10024;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.active-filter-tag button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-size: 12px;
}

.active-filter-tag button:hover {
  color: #fff;
}

/* ── Apply/Clear Buttons ─────────────────────────────────── */
.filter-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eee;
}

.btn-apply-filter {
  flex: 1;
  background: linear-gradient(135deg, #D10024, #ff1744);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.btn-apply-filter:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(209, 0, 36, 0.3);
}

.btn-clear-filter {
  background: #f5f5f5;
  color: #666;
  border: 1px solid #ddd;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-clear-filter:hover {
  background: #eee;
  color: #333;
}

/* ── No Category Placeholder ─────────────────────────────── */
.no-category-placeholder {
  text-align: center;
  padding: 30px 15px;
  color: #aaa;
}

.no-category-placeholder i {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
  opacity: 0.4;
}

.no-category-placeholder p {
  font-size: 13px;
  line-height: 1.5;
}

/* ── Loading Overlay ─────────────────────────────────────── */
#store-loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

#store-loading-overlay.active {
  display: flex;
}

.store-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #eee;
  border-top-color: #D10024;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Wishlist Button — Premium Animated ──────────────────── */
.add-to-wishlist.wishlist-btn {
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
}

.add-to-wishlist.wishlist-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(209, 0, 36, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.add-to-wishlist.wishlist-btn:hover {
  background: rgba(209, 0, 36, 0.08) !important;
  border-color: rgba(209, 0, 36, 0.4) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(209, 0, 36, 0.2) !important;
}

.add-to-wishlist.wishlist-btn:hover::before {
  opacity: 1;
}

.add-to-wishlist.wishlist-btn:hover i {
  color: #D10024 !important;
}

.add-to-wishlist.wishlist-btn.wishlist-animating i {
  animation: heartBeatPremium 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.add-to-wishlist.wishlist-btn.wishlist-added i {
  color: #D10024 !important;
  animation: heartPop 0.4s ease forwards;
}

@keyframes heartBeatPremium {
  0% {
    transform: scale(1) rotate(0deg);
  }

  15% {
    transform: scale(1.5) rotate(-5deg);
  }

  30% {
    transform: scale(0.85) rotate(3deg);
  }

  50% {
    transform: scale(1.35) rotate(-2deg);
  }

  70% {
    transform: scale(0.95) rotate(1deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes heartPop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.5);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

/* ── View Toggle Buttons (Grid / List) ──────────────────── */
#view-toggle-btns {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 4px;
}

#view-toggle-btns li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  color: #999;
  font-size: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#view-toggle-btns li::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(209, 0, 36, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

#view-toggle-btns li:hover {
  color: #D10024;
  background: rgba(209, 0, 36, 0.06);
}

#view-toggle-btns li:hover::before {
  opacity: 1;
}

#view-toggle-btns li.active {
  background: linear-gradient(135deg, #D10024, #ff1744);
  color: #fff;
  box-shadow: 0 2px 8px rgba(209, 0, 36, 0.35);
  transform: scale(1.05);
}

#view-toggle-btns li.active::before {
  opacity: 0;
}

#view-toggle-btns li i {
  transition: transform 0.3s ease;
  pointer-events: none;
}

#view-toggle-btns li:hover i {
  transform: scale(1.15);
}

#view-toggle-btns li.active i {
  transform: scale(1);
}

/* ── List-mode product card ──────────────────────────────── */
#products-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#products-grid.list-view .product-grid-item {
  width: 100%;
  padding: 0;
  opacity: 0;
  transform: translateX(-12px);
  animation: slideInRow 0.3s ease forwards;
}

@keyframes slideInRow {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#products-grid.list-view .product-grid-item:nth-child(1) {
  animation-delay: 0.00s;
}

#products-grid.list-view .product-grid-item:nth-child(2) {
  animation-delay: 0.04s;
}

#products-grid.list-view .product-grid-item:nth-child(3) {
  animation-delay: 0.08s;
}

#products-grid.list-view .product-grid-item:nth-child(4) {
  animation-delay: 0.12s;
}

#products-grid.list-view .product-grid-item:nth-child(5) {
  animation-delay: 0.16s;
}

#products-grid.list-view .product-grid-item:nth-child(n+6) {
  animation-delay: 0.20s;
}

#products-grid.list-view .product {
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s, transform 0.25s;
  flex-direction: row;
}

#products-grid.list-view .product:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

#products-grid.list-view .product-img {
  width: 200px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}

#products-grid.list-view .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

#products-grid.list-view .product:hover .product-img img {
  transform: scale(1.05);
}

#products-grid.list-view .product-body {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: none;
}

#products-grid.list-view .product-body h3.product-name {
  font-size: 17px;
  margin-bottom: 6px;
}

#products-grid.list-view .product-body .product-category {
  font-size: 11px;
  color: #D10024;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

#products-grid.list-view .product-body h4.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

#products-grid.list-view .add-to-cart {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-left: 1px solid #f0f0f0;
  background: #fafafa;
}

#products-grid.list-view .add-to-cart-btn {
  width: 100%;
  text-align: center;
  padding: 12px 16px;
}

/* ── Grid-mode pop-in animation ──────────────────────────── */
#products-grid.grid-view .product-grid-item {
  opacity: 0;
  transform: scale(0.96) translateY(8px);
  animation: popInCard 0.3s ease forwards;
}

@keyframes popInCard {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

#products-grid.grid-view .product-grid-item:nth-child(1) {
  animation-delay: 0.00s;
}

#products-grid.grid-view .product-grid-item:nth-child(2) {
  animation-delay: 0.05s;
}

#products-grid.grid-view .product-grid-item:nth-child(3) {
  animation-delay: 0.10s;
}

#products-grid.grid-view .product-grid-item:nth-child(n+4) {
  animation-delay: 0.15s;
}

/* ══════════════════════════════════════════════════════════
       PREMIUM ADD-TO-CART — anchored inside .product-img
       ══════════════════════════════════════════════════════════ */

/* Ensure product-img is the positioning parent */
.product .product-img {
  position: relative;
  overflow: hidden;
}

/* Panel hides below the image, slides UP on card hover */
.product .add-to-cart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 10px;
  background: rgba(15, 15, 25, 0.85);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}

.product:hover .add-to-cart {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* ── The button itself ── */
.product .add-to-cart .add-to-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 100px;
  background: linear-gradient(135deg, #D10024 0%, #ff3355 55%, #ff1744 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
  width: 100%;
  justify-content: center;
}

/* Shimmer sweep */
.product .add-to-cart .add-to-cart-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg,
      transparent 35%,
      rgba(255, 255, 255, 0.28) 50%,
      transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

/* Glow ring */
.product .add-to-cart .add-to-cart-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #ff1744, #D10024, #ff3355);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  filter: blur(6px);
}

.product .add-to-cart .add-to-cart-btn:hover::before {
  transform: translateX(100%);
}

.product .add-to-cart .add-to-cart-btn:hover {
  box-shadow: 0 4px 20px rgba(209, 0, 36, 0.55), 0 0 0 1px rgba(255, 80, 100, 0.4);
  transform: translateY(-2px);
}

.product .add-to-cart .add-to-cart-btn:hover::after {
  opacity: 0.6;
}

.product .add-to-cart .add-to-cart-btn:active {
  transform: translateY(0px) scale(0.97);
  box-shadow: 0 2px 10px rgba(209, 0, 36, 0.4);
}

/* Cart icon */
.product .add-to-cart .add-to-cart-btn>i {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 3px 6px 3px 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 13px;
  color: #fff;
  opacity: 1;
  visibility: visible;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  transform: scale(1.2) rotate(-8deg);
}

.product .add-to-cart .add-to-cart-btn>i~* {
  padding-right: 12px;
}

/* ── List-view: add-to-cart exits the image and becomes a visible side column ── */
#products-grid.list-view .product-grid-item .product {
  display: flex;
  flex-direction: row;
}

#products-grid.list-view .product .product-img {
  width: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

#products-grid.list-view .product .add-to-cart {
  /* Reset absolute positioning — it's now part of the flex row */
  position: static;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  flex-shrink: 0;
  padding: 16px 14px;
  background: #fafafa;
  backdrop-filter: none;
  border-top: none;
  border-left: 1px solid #eee;
}

#products-grid.list-view .product .add-to-cart .add-to-cart-btn {
  height: 44px;
  font-size: 11px;
  letter-spacing: 0.5px;
  width: 100%;
}

#products-grid.list-view .product .add-to-cart .add-to-cart-btn>i {
  width: 30px;
  height: 30px;
  font-size: 12px;
  margin: 2px 5px 2px 2px;
}