/*
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"] {
  appearance: textfield;
  -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;
}

.ci-flag-icon {
  display: inline-block;
  vertical-align: -1px;
  margin-right: 6px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.header-ci-delivery,
.footer-ci-delivery {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15161D;
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
  padding: 15px 0px;
}

.header-search form {
  position: relative;
}

.header-search form .input-select {
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.header-search form .input {
  width: calc(100% - 360px);
  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;
}

.header-search form .search-btn,
.header-search form .search-btn i.fa {
  color: #fff !important;
}

.header-search form .search-btn i.fa {
  margin-right: 6px;
}

@media only screen and (max-width: 767px) {
  .header-search form {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
  }

  .header-search form .input-select {
    width: 140px;
    min-width: 140px;
  }

  .header-search form .input {
    width: auto;
    flex: 1;
  }

  .header-search form .search-btn {
    width: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-search form .search-btn i.fa {
    margin-right: 0;
  }

  .header-search form .search-btn .search-btn-text {
    display: none;
  }
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 15px 0px;
}

.header-ctn>div {
  display: inline-block;
}

.header-ctn>div+div {
  margin-left: 15px;
}

.header-ctn>div>a {
  display: block;
  position: relative;
  width: 90px;
  text-align: center;
  color: #FFF;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 18px;
}

.header-ctn>div>a>span {
  font-size: 12px;
}

.header-ctn>div>a>.qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #FFF;
  background-color: #D10024;
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-dropdown {
  position: absolute;
  width: 300px;
  background: #FFF;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
  box-shadow: 0px 0px 0px 2px #E4E7ED;
  z-index: 99;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.dropdown.open>.cart-dropdown {
  opacity: 1;
  visibility: visible;
}

.cart-dropdown .cart-list {
  max-height: 180px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: #2B2D42;
}

.cart-dropdown .cart-btns {
  margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns>a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: #D10024;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child {
  margin-right: -4px;
  background-color: #1e1f29;
}

.cart-dropdown .cart-btns>a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
  border-top: 1px solid #E4E7ED;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
  background: #FFF;
  border-bottom: 2px solid #E4E7ED;
  border-top: 3px solid #D10024;
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li {
  margin-left: 30px
}

.main-nav>li>a {
  padding: 20px 0px;
}

.main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
  color: #D10024;
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #D10024;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #15161D;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: #FFF;
  }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: #f29c15;
  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: #f29c15;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
  position: relative;
  background-color: #E4E7ED;
  z-index: -1;
}

.shop .shop-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h3 {
  color: #FFF;
}

.shop .shop-body .cta-btn {
  color: #FFF;
  text-transform: uppercase;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
  padding: 60px 0px;
  margin: 30px 0px;
  background-color: #E4E7ED;
  background-image: url('../img/hotdeal.png');
  background-position: center;
  background-repeat: no-repeat;
}

.hot-deal {
  text-align: center;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #D10024e6;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
  color: #FFF;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #FFF;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #D10024;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #D10024;
}

.product .product-img {
  position: relative;
}

.product .product-img>img {
  width: 100%;
}

/* Prevent oversized product thumbnails in listings */
.product .product-img {
  height: 230px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product .product-img > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.product .product-img > img,
.product .product-img > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.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;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
  white-space: nowrap;
  flex-shrink: 0;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #FFF;
  color: #E4E7ED;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color: #ef233c;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #D10024;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #FFF;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 15px;
  background: #1e1f29;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}

.product:hover .add-to-cart {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ef233c;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #D10024;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #D10024;
  border-color: #D10024;
  padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
}

.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;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
  white-space: nowrap;
  flex-shrink: 0;
}

.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-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
  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;
  white-space: nowrap;
  flex-shrink: 0;
}

.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;
  }
}

/* Mobile product grid: always 2 per row under 600px */
@media only screen and (max-width: 600px) {
  .popular-section .col-xs-6,
  #store .col-xs-6,
  .suggestion-section .col-xs-6,
  .related-lite .col-xs-6 {
    width: 50% !important;
  }
}

.homepage #top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #10131b;
}

.homepage .header-links li {
  margin-right: 22px;
  font-size: 13px;
}

.homepage .header-links li a {
  opacity: 0.92;
  transition: color .2s ease, opacity .2s ease;
}

.homepage #header {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, #171a25 0%, #12151f 100%);
  transition: all .25s ease;
}

.homepage .home-header-row {
  display: flex;
  align-items: center;
}

.homepage .header-logo .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.homepage .brand-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.homepage .header-search {
  padding: 6px 0;
}

.homepage .header-search form {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

.homepage .header-search .input,
.homepage .header-search .input-select,
.homepage .header-search .search-btn {
  height: 44px;
}

.homepage .header-search .input-select {
  border-radius: 28px 0 0 28px;
  width: 200px;
  min-width: 200px;
}

.homepage .header-search .input {
  width: auto;
  flex: 1;
  border-left: 0;
}

.homepage .header-search .search-btn {
  width: 120px;
  border-radius: 0 28px 28px 0;
  font-size: 12px;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.homepage .header-search .search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(209,0,36,.35);
}

.homepage .header-ctn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
}

.homepage .header-ctn > div > a {
  width: 74px;
  border-radius: 10px;
  padding: 9px 6px;
  background: rgba(255,255,255,0.04);
  transition: background .2s ease, transform .2s ease;
}

.homepage .header-ctn > div > a:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.homepage .section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.hero-slider.section {
  padding: 0 !important;
}

.homepage .hero-slider + .service-strip.section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hero-slide {
  height: 52vh;
  min-height: 420px;
  max-height: 520px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.2) 48%, rgba(0,0,0,.12) 100%);
}

.hero-slide-1 {
  background-image: url('../img/shop01.png');
}

.hero-slide-2 {
  background-image: url('../img/shop02.png');
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 72px 48px;
  max-width: 560px;
}

.hero-content h1 {
  color: #fff;
  font-size: 60px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-caption {
  color: #9ee37d;
  font-weight: 700;
}

.hero-price {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 18px;
}

.hero-btn {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 12px 26px;
  color: #fff;
  font-weight: 700;
  transition: all .25s ease;
}

.hero-btn:hover {
  color: #fff !important;
  background: #f29c15;
  border-color: #f29c15;
}

.light-btn {
  border-color: #111;
  color: #111;
}

.service-strip {
  background: transparent;
  margin-top: 34px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.service-cards-row {
  margin-left: -10px;
  margin-right: -10px;
}

.service-cards-row > [class*='col-'] {
  padding-left: 10px;
  padding-right: 10px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 92px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,.1);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 16px;
  flex: 0 0 42px;
}

.service-text h4 {
  margin: 0 0 3px;
  font-size: 16px;
  color: #111;
}

.service-text p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.homepage .product {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.homepage .product .product-img {
  background: #f9f9f9;
}

.homepage .product .product-img > img {
  transition: transform .35s ease;
}

.homepage .product:hover .product-img > img {
  transform: scale(1.08);
}

.homepage .product:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

.product-actions {
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  transform: none;
  opacity: 1;
  transition: all .3s ease;
  background: #fff;
  border-top: 1px solid #f1f1f1;
}

.homepage .product:hover .product-actions {
  transform: translateY(0);
  opacity: 1;
}

.btn-action {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #111;
  color: #111;
  text-align: center;
  border-radius: 999px;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 700;
}

.btn-action.solid {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn-action:hover {
  border-color: #f29c15;
  color: #f29c15;
}

.btn-action.solid:hover {
  background: #f29c15;
  border-color: #f29c15;
  color: #fff !important;
}

.homepage #navigation {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}

.homepage.scrolled #navigation {
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

.homepage .main-nav > li > a {
  font-weight: 600;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: color .2s ease;
}

.store-page #top-header,
.product-page #top-header {
  background: #10131b;
}

.store-page #header,
.product-page #header {
  background: linear-gradient(180deg, #171a25 0%, #12151f 100%);
  padding-top: 14px;
  padding-bottom: 14px;
}

.store-page .brand-name,
.product-page .brand-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-left: 8px;
}

.store-page #navigation,
.product-page #navigation {
  position: sticky;
  top: 0;
  z-index: 55;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.store-page .product,
.product-page .product {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.07);
}

.store-page .product-actions {
  opacity: 1;
  transform: none;
}

.store-page .catalog-section .product:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.store-page .catalog-section {
  background: linear-gradient(180deg, #f7f8fb 0%, #f2f4f8 100%);
}

.store-page #aside .aside {
  border-radius: 12px;
  border: 1px solid #e8ebf2;
  box-shadow: 0 8px 22px rgba(16,19,27,.04);
}

.store-page .aside > .aside-title {
  font-size: 17px;
  text-transform: none;
  margin-bottom: 18px;
}

.store-page .store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid #e8ebf2;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(16,19,27,.05);
  background: #fff;
}

.store-page .store-results-head h3 {
  margin: 0;
  font-size: 22px;
}

.store-page .store-results-head span {
  font-size: 12px;
  color: #7e8799;
}

.store-page .modern-sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.store-page .modern-sort label {
  margin: 0;
  font-size: 12px;
  color: #6f7890;
  text-transform: uppercase;
  font-weight: 700;
}

.store-page .modern-sort .input-select {
  height: 42px;
  border-radius: 999px;
  border: 1px solid #dbe1ee;
  min-width: 200px;
  background: #fff;
  font-weight: 600;
}

.store-page #store .product {
  border: 1px solid #e9edf5;
  border-radius: 14px;
}

.store-page #store .product .product-body {
  text-align: left;
}

.store-page #store .product .product-name {
  text-transform: none;
  font-size: 15px;
  min-height: 42px;
}

.store-page #store .product .product-price {
  color: #111;
  font-size: 24px;
}

.store-page #store .product .product-rating:after {
  display: none;
}

.store-page #store .product-actions {
  border-top: 1px solid #edf0f6;
}

@media only screen and (max-width: 767px) {
  .store-page .store-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .store-page .modern-sort .input-select {
    min-width: 180px;
  }
}

.product-page #breadcrumb {
  margin-bottom: 10px;
  padding: 14px 0;
}

.product-page .breadcrumb-tree li {
  font-size: 11px !important;
}

.product-layout {
  padding-top: 10px !important;
}

.product-page #product-main-img {
  background: #fff;
  border-radius: 8px;
  overflow: visible;
}

.product-page #product-main-img.is-static-gallery {
  position: relative;
  touch-action: pan-y !important;
  -webkit-user-select: none;
  user-select: none;
  overflow: visible !important;
}

.product-page #product-main-img .gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.85);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  -webkit-tap-highlight-color: transparent;
  appearance: none;
}

.product-page #product-main-img .gallery-nav:hover,
.product-page #product-main-img .gallery-nav:focus,
.product-page #product-main-img .gallery-nav:focus-visible,
.product-page #product-main-img .gallery-nav:active {
  background: rgba(17, 17, 17, 0.85) !important;
  color: #fff !important;
  border-color: #fff !important;
  outline: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.product-page #product-main-img .gallery-prev {
  left: 10px;
}

.product-page #product-main-img .gallery-next {
  right: 10px;
}

.product-page #product-main-img .gallery-nav .fa {
  font-size: 22px;
  line-height: 1;
  color: #fff !important;
}

.product-page #product-main-img.is-static-gallery .product-preview {
  display: none;
  touch-action: pan-y !important;
  overflow: visible !important;
}

.product-page #product-main-img.is-static-gallery .product-preview.is-active {
  display: block;
}

.product-page #product-main-img.is-static-gallery .product-preview img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  touch-action: pan-y !important;
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.product-page #product-imgs.is-static-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 14px;
  padding-bottom: 4px;
}

.product-page #product-imgs.is-static-thumbs .product-preview {
  flex: 0 0 72px;
  width: 72px;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.product-page #product-imgs.is-static-thumbs .product-preview.is-active {
  border-color: #f29c15;
}

.product-page #product-imgs.is-static-thumbs .product-preview img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.product-page #product-main-img .product-preview {
  background: #f5f5f5;
}

.product-page #product-main-img:not(.is-static-gallery) .product-preview img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.product-page .thumb-row {
  margin-top: 14px;
}

.product-page .thumb-row .product-preview {
  border-radius: 4px;
  overflow: hidden;
}

.product-page .clean-details .product-name {
  text-transform: none;
  font-size: 44px;
  line-height: 1.12;
}

.product-page .product-meta-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 8px;
}

.product-page .price-line {
  border-bottom: 1px solid #ececec;
  padding-bottom: 16px;
  margin-bottom: 8px;
}

.product-page .price-line .product-price {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
  max-width: 100%;
}

.product-page .product-desc {
  border-bottom: 1px solid #ececec;
  padding: 12px 0 14px;
  margin-bottom: 10px;
}

.product-page .product-desc h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
  color: #111;
}

.product-page .product-desc-text {
  font-size: 13px;
  line-height: 1.55;
  color: #111;
}

.product-page .variant-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
}

.product-page .variant-row .variant-label {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.product-page .variant-row label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.product-page .variant-row .input-select {
  height: 42px;
  border-radius: 999px;
  border: 1px solid #dbe1ee;
  background: #fff;
  font-weight: 600;
}

.product-page .variant-row-colors {
  align-items: start;
}

.product-page .color-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-top: 2px;
}

.product-page .color-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  user-select: none;
}

.product-page .color-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-page .color-option .swatch {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #d7dbe6;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}

.product-page .color-option input:checked + .swatch {
  outline: 3px solid rgba(242,156,21,.25);
  border-color: var(--brand);
}

.product-page .color-option .color-name {
  display: none;
}

@media only screen and (max-width: 767px) {
  .product-page .color-option .color-name {
    display: inline;
  }
}

.product-page .feature-list li {
  border-bottom: 1px solid #ececec;
  padding: 12px 0;
  font-size: 13px;
  color: #111;
}

.product-page .feature-list li i {
  width: 28px;
  text-align: center;
}

.product-page .qty-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 14px 0;
}

.product-page .qty-row > span {
  font-size: 13px;
  font-weight: 600;
}

.product-page .qty-row .input-number {
  width: 150px;
}

.product-page .qty-row .input-number input[type="number"] {
  height: 42px;
  padding-right: 44px;
  font-size: 13px;
}

.product-page .qty-row .input-number .qty-up,
.product-page .qty-row .input-number .qty-down {
  width: 26px;
  height: 21px;
  right: 0;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  z-index: 2;
}

.product-page .trust-row {
  display: flex;
  border: 1px solid #ececec;
  border-radius: 4px;
  margin-top: 18px;
}

.product-page .trust-row > div {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  font-size: 13px;
  border-right: 1px solid #ececec;
}

.product-page .trust-row > div:last-child {
  border-right: 0;
}

.product-page .product-suggest {
  padding-top: 16px !important;
  padding-bottom: 90px !important;
}

.product-page .product-suggest .title {
  font-size: 36px;
  text-transform: none;
}

.product-page {
  padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .product-page .clean-details .product-name {
    font-size: 28px;
  }

  .product-page .trust-row {
    flex-direction: column;
  }

  .product-page .trust-row > div {
    border-right: 0;
    border-bottom: 1px solid #ececec;
  }

  .product-page .trust-row > div:last-child {
    border-bottom: 0;
  }

  .product-page {
    padding-bottom: 24px;
  }
}

.review-section {
  background: #fafafa;
  border-top: 1px solid #ececec;
}

.review-summary,
.review-feed {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

.review-score {
  font-size: 48px;
  font-weight: 700;
  margin-top: 6px;
}

.review-breakdown li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed #e6e6e6;
}

.review-breakdown li:last-child {
  border-bottom: 0;
}

.review-filter-line {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 8px 12px;
  margin: 12px 0 16px;
  font-size: 13px;
}

.comment-form-card {
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
  background: #fcfcfc;
}

.comment-form-card h4 {
  margin-bottom: 4px;
}

.comment-form .input {
  margin-bottom: 10px;
}

.comment-form .input-select {
  width: 100%;
  margin-bottom: 10px;
}

.rating-select label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.comment-form .primary-btn {
  margin-top: 6px;
}

.comment-card {
  border-top: 1px solid #ececec;
  padding-top: 14px;
  margin-top: 14px;
}

.comment-date {
  color: #777;
  font-size: 12px;
  margin-bottom: 5px;
}

.comment-card h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.author {
  font-size: 13px;
  margin: 8px 0;
}

.author span {
  font-weight: 700;
}

.seller-reply {
  background: #f6f8fb;
  border-left: 3px solid #f29c15;
  border-radius: 6px;
  padding: 10px 12px;
  margin: 10px 0;
  font-size: 14px;
}

.useful {
  font-size: 13px;
}

.useful span {
  margin-left: 8px;
}

/* Hard override: remove all legacy red accents */
body .primary-btn,
body .newsletter form .newsletter-btn,
body .header-search form .search-btn,
body .product .product-img .product-label > span.new,
body .product .product-img .product-label > span.sale,
body .product .add-to-cart .add-to-cart-btn,
body .product-details .add-to-cart .add-to-cart-btn,
body .store-pagination li.active,
body .store-grid li.active,
body .reviews-pagination li.active,
body .hot-deal .hot-deal-countdown > li,
body .noUi-connect,
body .noUi-horizontal .noUi-handle,
body .input-radio input[type="radio"]:checked + label span,
body .input-checkbox input[type="checkbox"]:checked + label span,
body .cart-dropdown .cart-btns > a,
body .cart-dropdown .cart-summary .order-total,
body .product-page .bottom-cta .cta-dark {
  background-color: #f29c15 !important;
  border-color: #f29c15 !important;
}

body a:hover,
body a:focus,
body .main-nav > li > a:hover,
body .main-nav > li > a:focus,
body .main-nav > li.active > a,
body .section-tab-nav li.active a,
body .section-tab-nav li a:hover,
body .product .product-body .product-price,
body .product-details .product-price,
body .product-widget .product-body .product-price,
body .product .product-body .product-name > a:hover,
body .product-widget .product-body .product-name > a:hover,
body .product .product-body .product-rating > i.fa-star,
body .product-details .product-rating > i.fa-star,
body .rating-avg .rating-stars > i.fa-star,
body .rating .rating-stars > i.fa-star,
body .header-links li i,
body .footer-links li i,
body .store-sort label,
body .store-qty,
body .review-link:hover {
  color: #f29c15 !important;
}

body #navigation {
  border-top-color: #f29c15 !important;
}

body .main-nav > li > a:after,
body .section-tab-nav li a:after,
body #product-tab .tab-nav li a:after {
  background-color: #f29c15 !important;
}

body .shop:before,
body .shop:after {
  background: #f29c15 !important;
}

/* panagroupe brand refresh */
.homepage,
.store-page,
.product-page {
  --brand: #f29c15;
  --brand-soft: #fff6e8;
  --ink: #2f3543;
}

.homepage #top-header,
.store-page #top-header,
.product-page #top-header {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

.homepage #top-header .header-links li a,
.store-page #top-header .header-links li a,
.product-page #top-header .header-links li a {
  color: var(--ink);
}

.homepage #top-header .header-links li i,
.store-page #top-header .header-links li i,
.product-page #top-header .header-links li i {
  color: var(--brand);
}

.homepage #header,
.store-page #header,
.product-page #header {
  background: #ffffff;
  border-bottom: 1px solid #f3f3f3;
}

.homepage .header-logo .logo,
.store-page .header-logo .logo,
.product-page .header-logo .logo {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
}

.homepage .header-logo .logo img,
.store-page .header-logo .logo img,
.product-page .header-logo .logo img {
  width: 92px;
  height: auto;
}

.homepage .header-ctn>div>a,
.store-page .header-ctn>div>a,
.product-page .header-ctn>div>a {
  color: var(--ink);
  background: #fff;
  border: 1px solid #ececec;
}

.header-ctn>div>a>.qty {
  background-color: var(--brand);
}

#navigation {
  border-top-color: var(--brand);
}

.main-nav>li>a:hover,
.main-nav>li>a:focus,
.main-nav>li.active>a,
a:hover,
a:focus {
  color: var(--brand);
}

.main-nav>li>a:after,
.section-tab-nav li a:after,
.section-title .title:after {
  background-color: var(--brand);
}

.primary-btn,
.newsletter form .newsletter-btn,
.header-search form .search-btn,
.btn-action.solid {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn-action:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.btn-action.solid:hover,
.hero-btn:hover {
  background: #dd8808;
  border-color: #dd8808;
  color: #fff !important;
}

.btn-action.solid:hover {
  color: #fff !important;
}

.product .product-body .product-price,
.product-details .product-price,
.product-widget .product-body .product-price {
  color: var(--brand);
}

.product .product-body .product-rating>i.fa-star,
.product-details .product-rating>i.fa-star,
.rating-avg .rating-stars>i.fa-star,
.rating .rating-stars>i.fa-star {
  color: var(--brand);
}

.noUi-connect {
  background-color: var(--brand);
}

#footer {
  background: #fff;
  color: #697387;
  border-top: 1px solid #ececec;
}

#bottom-footer {
  background: #fff;
}

.footer .footer-title {
  color: var(--ink);
}

.checkout-page #top-header,
.checkout-page #header {
  background: #fff;
}

.checkout-page #navigation {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.checkout-modern {
  background: linear-gradient(180deg, #f8f9fc 0%, #f2f4f8 100%);
}

.checkout-card {
  background: #fff;
  border: 1px solid #e8ebf2;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(13,18,30,.05);
  padding: 22px;
}

.checkout-modern .section-title .title {
  text-transform: none;
}

.simple-checkout-form .input {
  border-radius: 10px;
  border-color: #e2e7f0;
  min-height: 44px;
}

.checkout-free-note {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
}

.order-card .order-col {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eef1f6;
}

.order-card .order-col.total-row {
  border-bottom: 0;
  margin-top: 6px;
}

.order-card .order-total {
  color: #f29c15;
  font-size: 22px;
}

.order-card .order-submit {
  margin-top: 14px;
  width: 100%;
}

/* Final brand consistency pass */
.fa,
.header-links li i,
.footer-links li i {
  color: var(--brand);
}

.product .product-body .product-btns > button:hover,
.product .product-body .product-name > a:hover,
.product .product-body .product-name > a:focus,
.product-widget .product-body .product-name > a:hover,
.product-widget .product-body .product-name > a:focus,
.review-link:hover {
  color: var(--brand);
}

.hero-btn {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.hero-btn.light-btn {
  background: #fff;
  color: var(--ink);
  border-color: #e6e6e6;
}

.hero-btn.light-btn:hover {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: var(--brand);
  border-color: var(--brand);
}

.slick-dots li.slick-active button:before {
  background-color: var(--brand);
}

.input-radio input[type="radio"]:checked + label span,
.input-checkbox input[type="checkbox"]:checked + label span {
  background-color: var(--brand);
  border-color: var(--brand);
}

.section-tab-nav li.active a,
.section-tab-nav li a:hover,
.breadcrumb-tree li a:hover,
.store-sort label,
.store-qty {
  color: var(--brand);
}

.product-page .seller-reply {
  border-left-color: var(--brand);
}

.product-page .bottom-cta .cta-dark,
.product-page .bottom-cta .cta-light:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.product-page .bottom-cta .cta-light {
  color: var(--ink);
  border-color: #d9d9d9;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.homepage .section-title {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.homepage .section-title .title {
  font-size: 30px;
  text-transform: none;
  letter-spacing: .2px;
  position: relative;
  padding-bottom: 8px;
}

.homepage .section-title .title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, #f29c15 0%, #ffbe5a 100%);
}

.homepage .categories-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.homepage .categories-section .shop {
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  height: 280px;
}

.homepage .categories-section .shop .shop-img {
  height: 100%;
}

.homepage .categories-section .shop .shop-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.homepage .categories-section .shop .shop-body {
  width: 85%;
}

.homepage .categories-section .shop .shop-body h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.homepage .categories-section .shop .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.homepage .popular-section {
  background: #fff;
}

.homepage .popular-section .product,
.homepage .suggestion-section .product {
  border: 1px solid #efefef;
}

.homepage .popular-section .product .product-category,
.homepage .suggestion-section .product .product-category {
  font-size: 11px;
  letter-spacing: .6px;
}

.homepage .popular-section .product .product-name,
.homepage .suggestion-section .product .product-name {
  font-size: 16px;
  text-transform: none;
  min-height: 42px;
}

.homepage .popular-section .products-slick-nav {
  top: -48px;
}

.homepage .popular-section .products-slick-nav .slick-prev,
.homepage .popular-section .products-slick-nav .slick-next {
  width: 34px;
  height: 34px;
  border-color: #ddd;
}

.homepage .suggestion-section {
  background: linear-gradient(180deg, #fbfbfb 0%, #f4f4f4 100%);
}

.homepage .awards-banner .awards-content {
  box-shadow: 0 14px 34px rgba(20,24,66,.35);
}

.homepage #newsletter.section {
  margin-top: 10px;
  border-top: 0;
  border-bottom: 0;
  background: #ffffff;
}

.homepage .newsletter {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.homepage .newsletter p {
  margin-bottom: 8px;
}

.homepage #footer {
  margin-top: 14px;
  background: linear-gradient(180deg, #171a25 0%, #11131d 100%);
}

.homepage #footer .footer-title {
  text-transform: none;
  font-size: 20px;
  margin-bottom: 20px;
}

.homepage #footer .footer-links li a {
  transition: transform .2s ease, color .2s ease;
  display: inline-block;
}

.homepage #footer .footer-links li a:hover {
  transform: translateX(3px);
}

.homepage .products-slick .slick-list {
  padding-bottom: 12px;
  margin-bottom: 0;
}

.color-filter label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.color-swatch {
  display: inline-block;
  width: 18px;
  height: 10px;
  border-radius: 2px;
  margin-left: 8px;
  border: 1px solid #ddd;
}

.sw-black { background: #000; }
.sw-blue { background: #1942ff; }
.sw-white { background: #fff; }

.product-actions-fixed {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.awards-banner {
  background: radial-gradient(circle at 20% 20%, #8190ff 0%, #4f61d9 45%, #25306f 100%);
  color: #fff;
  margin: 25px 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.awards-content {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(to right, rgba(24,29,72,.35), rgba(24,29,72,.1)), url('../img/shop03.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  border-radius: 16px;
  padding: 36px;
}

.awards-content h3 {
  color: #fff;
  font-size: 44px;
  margin-bottom: 10px;
}

.awards-content p {
  max-width: 520px;
  font-size: 17px;
}

.award-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.award-badges span {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
}

.catalog-section {
  background: #f7f7f7;
}

.catalog-section .aside {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 18px;
}

.catalog-section .product {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #ececec;
}

.catalog-section .product .product-body {
  text-align: left;
}

.catalog-section .product .product-name {
  text-transform: none;
  font-size: 15px;
  min-height: 38px;
}

.catalog-section .product .product-price {
  font-size: 24px;
  color: #111;
}

.catalog-section .store-filter {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 8px 15px;
}

.related-lite .mini-product {
  box-shadow: none;
  border-radius: 6px;
  border: 1px solid #efefef;
}

.related-lite .mini-product .product-img {
  padding: 8px;
}

.related-lite .mini-product .product-body,
.related-lite .mini-product .add-to-cart {
  display: none;
}

.product-page .product-suggest.related-lite .mini-product .product-body,
.product-page .product-suggest.related-lite .mini-product .product-actions {
  display: block;
}

.product-page .product-suggest.related-lite .mini-product .product-actions {
  padding: 10px 12px 12px;
}

.product-page .product-suggest.related-lite .mini-product .product-body {
  padding: 0 12px 8px;
}

.product-page .product-suggest.related-lite .mini-product .product-name {
  text-transform: none;
  font-size: 12px;
  min-height: 34px;
}

.product-page .product-suggest.related-lite .mini-product .product-price {
  font-size: 14px;
}

.product-page .product-suggest.related-lite .mini-product .product-actions .btn-action {
  white-space: nowrap;
  padding: 8px 10px;
  font-size: 11px;
}

@media only screen and (max-width: 767px) {
  .homepage #top-header {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .homepage #header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  /* Masquer le logo sur mobile pour gagner de la place en haut */
  .header-logo,
  .home-header-row > .col-md-2 {
    display: none !important;
  }

  .home-header-row > .col-md-10 {
    width: 100%;
    float: none;
  }

  .product-page #product-main-img,
  .product-page #product-main-img .product-preview,
  .product-page #product-main-img .product-preview img,
  .product-page #product-main-img .slick-list,
  .product-page #product-main-img .slick-track,
  .product-page #product-main-img .slick-slide {
    touch-action: pan-y !important;
  }

  .product-page #product-main-img .zoomImg {
    display: none !important;
    pointer-events: none !important;
  }

  .hero-slide {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  .hero-content {
    padding: 28px 18px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    box-sizing: border-box;
  }

  .hero-content h1 {
    font-size: 28px !important;
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .hero-price {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .hero-btn {
    padding: 10px 18px;
    font-size: 13px;
    align-self: flex-start;
  }

  .homepage .header-search .input,
  .homepage .header-search .input-select,
  .homepage .header-search .search-btn {
    height: 40px;
  }

  .homepage .home-header-row {
    display: block;
  }

  .homepage .header-search form {
    display: flex;
  }

  .homepage .header-search .input-select {
    width: 120px;
    min-width: 120px;
  }

  .homepage .header-search .search-btn {
    width: 96px;
    font-size: 11px;
  }

  .homepage .section {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .homepage .section-title .title {
    font-size: 24px;
  }

  .homepage .categories-section .shop {
    height: 220px;
  }

  .homepage .categories-section .shop .shop-body h3 {
    font-size: 22px;
  }

  .homepage .newsletter {
    padding: 18px 14px;
  }

  .awards-content {
    min-height: 240px;
    padding: 24px;
  }

  .awards-content h3 {
    font-size: 30px;
  }

  .product-actions-fixed {
    position: sticky;
    bottom: 8px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    justify-content: flex-start;
  }

  .service-item {
    border-right: none;
    border-bottom: 1px solid #e3e3e3;
  }

  .product-actions {
    transform: none;
    opacity: 1;
  }

  .service-strip {
    margin-top: 24px;
  }

  .service-card {
    margin-bottom: 10px;
    min-height: 86px;
  }
}

/* Global typography compact mode */
body,
input,
select,
textarea,
button {
  font-size: 11px;
}

h1 { font-size: 28px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }
h4 { font-size: 15px; }
h5 { font-size: 13px; }
h6 { font-size: 11px; }

.section-title .title,
.product-page .product-suggest .title {
  font-size: 22px !important;
}

.hero-content h1 {
  font-size: 34px !important;
}

.hero-content p,
.hero-caption,
.product .product-body .product-name > a,
.product-widget .product-body .product-name > a,
.product-details .product-name,
.breadcrumb-tree li,
.store-page .store-results-head span,
.store-page .modern-sort label,
.checkout-modern .checkout-card .title {
  font-size: 11px !important;
}

.product .product-body .product-price,
.product-details .product-price,
.order-summary .order-col,
.btn-action,
.primary-btn,
.bottom-cta a {
  font-size: 13px !important;
}

.checkout-product-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkout-qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e2e7f0;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.checkout-qty-controls input[type="number"] {
  width: 42px;
  height: 32px;
  border: 0;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  -moz-appearance: textfield;
}

.checkout-qty-controls input[type="number"]::-webkit-outer-spin-button,
.checkout-qty-controls input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.checkout-qty-btn {
  width: 28px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  user-select: none;
  background: #f7f8fb;
  color: #111;
}

.checkout-qty-btn:hover {
  background: #f29c15;
  color: #fff;
}

.checkout-qty-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #f5c67b;
  background: #fff5e6;
  color: #8a5608;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.checkout-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.checkout-success-modal.is-open {
  display: block;
}

.checkout-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.checkout-success-dialog {
  position: relative;
  width: calc(100% - 24px);
  max-width: 420px;
  margin: 12vh auto 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  border: 1px solid #eceff5;
  padding: 18px 16px;
  text-align: center;
}

.checkout-success-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 20px;
  color: #7a8294;
  line-height: 1;
}

.checkout-success-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff5e6;
  color: var(--brand);
  font-size: 18px;
}

.checkout-success-dialog h3 {
  margin-bottom: 8px;
  font-size: 16px;
  text-transform: none;
}

.checkout-success-dialog p {
  margin-bottom: 14px;
  font-size: 12px;
  color: #5e6678;
}

.checkout-success-summary {
  border: 1px solid #eceff5;
  border-radius: 10px;
  background: #fafbfe;
  padding: 10px;
  margin: 0 0 12px;
}

.checkout-success-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  padding: 4px 0;
}

.checkout-success-summary > div.total {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed #d9deea;
}

.checkout-success-summary span {
  color: #697286;
}

.checkout-success-summary strong {
  color: #141926;
}

.checkout-success-summary .total strong {
  color: var(--brand);
}

.checkout-success-dialog .primary-btn {
  min-width: 120px;
  font-size: 12px !important;
  padding: 9px 18px;
}

/* Compact, square-ish product cards for listing pages */
.homepage .popular-section .product,
.store-page #store .product {
  display: flex;
  flex-direction: column;
}

.homepage .popular-section .product .product-img,
.store-page #store .product .product-img {
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 8px;
}

.homepage .popular-section .product .product-body,
.store-page #store .product .product-body {
  padding: 8px 8px 6px;
}

.homepage .popular-section .product .product-name,
.store-page #store .product .product-name {
  min-height: 28px;
  line-height: 1.2;
  margin-bottom: 2px;
}

.homepage .popular-section .product .product-name > a,
.store-page #store .product .product-name > a {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.homepage .popular-section .product .product-price,
.store-page #store .product .product-price {
  font-size: 14px !important;
  line-height: 1.25;
  margin-bottom: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.homepage .popular-section .product .product-old-price,
.store-page #store .product .product-old-price {
  font-size: 11px;
  white-space: nowrap;
  flex-shrink: 0;
}

.homepage .popular-section .product .product-actions,
.store-page #store .product .product-actions {
  padding: 8px;
}

.homepage .popular-section .product .btn-action,
.store-page #store .product .btn-action {
  white-space: nowrap;
  font-size: 12px !important;
  padding: 8px 10px;
}

/*=========================================================
	CHECKOUT PAGE
===========================================================*/

.checkout-page #breadcrumb {
  padding: 8px 0;
  margin-bottom: 0;
}

.checkout-page #footer,
.checkout-page #newsletter {
  display: none !important;
}

.checkout-page {
  padding-bottom: 120px;
}

.checkout-page .checkout-modern {
  padding-top: 8px;
  padding-bottom: 8px;
  background: #fff;
}

.checkout-page .checkout-modern .container {
  max-width: 640px;
}

.checkout-page .checkout-card {
  margin-bottom: 8px;
  padding: 10px;
  box-shadow: none;
  border: 1px solid #ececec;
  border-radius: 8px;
}

.checkout-page .checkout-alert {
  margin-bottom: 8px;
  padding: 8px 10px;
  border: 1px solid #f29c15;
  background: #fff6e8;
  color: #8a5608;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.checkout-page .checkout-block-title {
  margin: 0 0 8px;
  font-size: 14px !important;
  font-weight: 700;
  color: #111;
  text-transform: none;
}

.checkout-page .checkout-product-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-page .checkout-product-name {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 13px !important;
  font-weight: 700;
  color: #111;
  text-transform: none;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.checkout-page .checkout-unit-price {
  margin: 0;
  flex-shrink: 0;
  font-size: 13px !important;
  font-weight: 700;
  color: #f29c15;
  white-space: nowrap;
}

.checkout-page .checkout-info-card {
  background: #4285f4;
  border: 0;
  padding: 14px 12px;
}

.checkout-page .checkout-info-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.checkout-page .checkout-info-head-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkout-page .checkout-info-head-icon .fa,
.checkout-page .checkout-info-head-icon i {
  color: #fff !important;
  font-size: 16px;
}

.checkout-page .checkout-info-card .checkout-block-title {
  margin: 0;
  color: #fff !important;
  font-size: 15px !important;
}

.checkout-page .checkout-info-subtitle {
  margin: 2px 0 0;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 400;
  opacity: 0.95;
}

.checkout-page .checkout-icon-field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 8px;
  padding: 0 12px;
  min-height: 42px;
  background: #fff;
  border-radius: 8px;
}

.checkout-page .checkout-icon-field.is-textarea {
  align-items: flex-start;
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 64px;
}

.checkout-page .checkout-icon-field > .fa,
.checkout-page .checkout-icon-field > i {
  width: 18px;
  text-align: center;
  color: #4285f4 !important;
  font-size: 16px;
  flex-shrink: 0;
}

.checkout-page .checkout-icon-field > .fa-whatsapp {
  color: #25d366 !important;
}

.checkout-page .checkout-icon-field-body {
  flex: 1;
  min-width: 0;
}

.checkout-page .checkout-inner-label {
  display: block;
  font-size: 12px !important;
  font-weight: 700;
  color: #111 !important;
  line-height: 1.2;
}

.checkout-page .checkout-info-card .checkout-control,
.checkout-page .checkout-info-card .input,
.checkout-page .checkout-info-card .input-select,
.checkout-page .checkout-info-card textarea.checkout-control {
  flex: 1;
  width: 100%;
  height: 42px;
  min-height: 42px;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: #fff !important;
  color: #111 !important;
  font-size: 13px !important;
  box-shadow: none !important;
}

.checkout-page .checkout-info-card textarea.checkout-control {
  height: auto;
  min-height: 34px;
  padding: 0;
  resize: none;
}

.checkout-page .checkout-info-card .checkout-control::placeholder,
.checkout-page .checkout-info-card .input::placeholder,
.checkout-page .checkout-info-card textarea::placeholder {
  color: #9aa0a6;
}

.checkout-page .checkout-info-card .checkout-free-note {
  margin: 2px 0 8px;
  color: #ffe082 !important;
  font-size: 12px !important;
  font-weight: 700;
}

.checkout-page .checkout-info-card .checkout-free-note .fa,
.checkout-page .checkout-info-card .checkout-free-note i {
  color: #ffe082 !important;
  margin-right: 6px;
}

.checkout-page .checkout-product-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ececec;
  background: #fff;
  flex-shrink: 0;
}

.checkout-page .checkout-field-row {
  display: block;
}

.checkout-page .checkout-label {
  display: block;
  margin-bottom: 3px;
  font-size: 12px !important;
  font-weight: 700;
  color: #111;
}

.checkout-page .checkout-control,
.checkout-page .simple-checkout-form .input,
.checkout-page .simple-checkout-form .input-select {
  width: 100%;
  height: 36px;
  min-height: 36px;
  font-size: 13px !important;
  color: #111;
  border: 1px solid #f29c15 !important;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  padding: 0 10px;
}

.checkout-page textarea.checkout-control {
  height: auto;
  min-height: 52px;
  padding-top: 8px;
  padding-bottom: 8px;
  resize: vertical;
}

.checkout-page .checkout-control:focus,
.checkout-page .simple-checkout-form .input:focus,
.checkout-page .simple-checkout-form .input-select:focus {
  outline: none;
  border-color: #f29c15 !important;
  box-shadow: none;
}

.checkout-page .checkout-info-card .checkout-icon-field .checkout-control,
.checkout-page .checkout-info-card .checkout-icon-field .input,
.checkout-page .checkout-info-card .checkout-icon-field .input-select,
.checkout-page .checkout-info-card .checkout-icon-field textarea.checkout-control {
  border: 0 !important;
  background: #fff !important;
  color: #111 !important;
  box-shadow: none !important;
  padding: 0;
  height: 42px;
  min-height: 42px;
}

.checkout-page .checkout-info-card .checkout-icon-field textarea.checkout-control {
  height: auto;
  min-height: 34px;
}

.checkout-page .checkout-info-card .checkout-icon-field:last-child {
  margin-bottom: 0;
}

.checkout-page .checkout-free-note {
  margin: 0 0 6px;
  font-size: 12px !important;
}

.checkout-page .checkout-qty-controls {
  display: inline-flex;
  align-items: stretch;
  width: 108px;
  height: 32px;
  border: 1px solid #f29c15;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.checkout-page .checkout-qty-btn {
  width: 28px;
  height: 32px;
  border: 0;
  background: #f29c15;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.checkout-page .checkout-qty-controls input[type="number"] {
  flex: 1;
  width: auto;
  height: 32px;
  border: 0;
  text-align: center;
  font-size: 13px !important;
  font-weight: 700;
  color: #111;
  background: #fff;
  padding: 0;
}

.checkout-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid #ececec;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
}

.checkout-bottom-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-bottom-resume {
  flex: 1;
  min-width: 0;
}

.checkout-bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px !important;
  color: #64748b;
  line-height: 1.3;
}

.checkout-bottom-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-bottom-row strong {
  color: #111;
  white-space: nowrap;
}

.checkout-bottom-row.is-total {
  font-size: 13px !important;
  font-weight: 700;
}

.checkout-bottom-row.is-total span,
.checkout-bottom-row.is-total strong,
.checkout-bottom-row.is-total #checkout-total {
  color: #f29c15 !important;
}

.checkout-bottom-btn {
  flex: 0 0 auto;
  min-width: 120px;
  height: 40px;
  padding: 0 14px;
  margin: 0;
  font-size: 13px !important;
  border-radius: 6px;
}

.checkout-bottom-btn:disabled {
  opacity: 0.75;
  cursor: wait;
}

/* Anim "attention" permanente sur le bouton Commander */
#checkout-submit-btn,
#buy-now-btn {
  animation: checkout-attention-nudge 1.15s ease-in-out infinite;
  will-change: transform;
}

#checkout-submit-btn:disabled {
  animation: none;
}

@keyframes checkout-attention-nudge {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  20% {
    transform: translateX(-10px) scale(1.06);
  }
  40% {
    transform: translateX(8px) scale(1.08);
  }
  60% {
    transform: translateX(-6px) scale(1.05);
  }
  80% {
    transform: translateX(4px) scale(1.06);
  }
}

.buy-now-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.buy-now-arrows {
  display: flex;
  justify-content: center;
  gap: 14px;
  min-height: 22px;
}

.buy-now-arrow {
  color: #f29c15 !important;
  font-size: 18px;
  animation: buy-now-arrow-bounce 1s ease-in-out infinite;
}

.buy-now-arrow:nth-child(2) {
  animation-delay: 0.15s;
}

.buy-now-arrow:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes buy-now-arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  #checkout-submit-btn,
  #buy-now-btn,
  .buy-now-arrow {
    animation: none;
  }
}

.checkout-loader {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.45);
}

.checkout-loader[hidden] {
  display: none !important;
}

.checkout-loader-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 22px 24px;
  text-align: center;
  min-width: 220px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.checkout-loader-spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid #fff6e8;
  border-top-color: #f29c15;
  border-radius: 50%;
  animation: checkout-spin 0.8s linear infinite;
}

.checkout-loader-card p {
  margin: 12px 0 0;
  font-size: 14px !important;
  font-weight: 600;
  color: #111;
}

@keyframes checkout-spin {
  to { transform: rotate(360deg); }
}

@media only screen and (max-width: 767px) {
  .checkout-page .checkout-label {
    display: none;
  }

  .checkout-page {
    padding-bottom: 140px;
  }

  .checkout-bottom-row:not(.is-total) {
    display: none;
  }

  .checkout-bottom-inner {
    align-items: center;
  }

  .checkout-bottom-btn {
    width: auto;
    min-width: 120px;
  }
}
