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

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #05422C
	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
\*----------------------------*/

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100%;
  overflow-x: hidden;
}

app-root,
app-header-component,
app-navigation,
app-fotter-component {
  display: block !important;
}


body {
  margin: 0;
  padding: 0;
  font-family: var(--font-lexend);
  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: #05422C;
  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: #05422C;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

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

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

/*-- Text input --*/

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

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

/*-- Number input --*/

.input-number {
  position: relative;
}

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

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

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

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

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

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

/*-- 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: #05422C;
  border-color: #05422C;
}

.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: 20px;
  padding-bottom: 20px;
}

.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: #05422C;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #05422C;
}

.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: #05422C;
}

/*=========================================================
	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: #05422C;
}

.header-links li i {
  color: #05422C;
  margin-right: 5px;
}

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

#header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15161D;
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
}

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

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

.header-search form {
  position: relative;
}

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

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

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

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 15px 0px;
}

.header-ctn>div {
  display: inline-block;
}

.header-ctn>div+div {
  margin-left: 15px;
}

.header-ctn>div>a {
  display: block;
  position: relative;
  width: 90px;
  text-align: center;
  color: #FFF;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 18px;
}

.header-ctn>div>a>span {
  font-size: 12px;
}

.header-ctn>div>a>.qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #FFF;
  background-color: #05422C;
}

.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: #05422C;
  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 #05422C;
}

/*----------------------------*\
	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: #05422C;
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #05422C;
  -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 {
  height: 450px;
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: #05422C;
  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: #05422C;
  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: #05422Ce6;
  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 #05422C;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #05422C;
}

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

.product .product-img>img {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color: #05422C;
  color: #05422C;
}

.product .product-img .product-label>span.new {
  background-color: #05422C;
  border-color: #05422C;
  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;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product .product-body .product-name>a {
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.product .product-body .product-price {
  color: #05422C;
  font-size: 18px;
}

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

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #FFF;
  color: #E4E7ED;
  z-index: 10;
}

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

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #05422C;
  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: 110px;
  padding: 6px 8px;
  font-size: 9px;
  line-height: 12px;
  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: #05422C;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #05422C;
  border-color: #05422C;
  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: #05422C;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- checkbox Filter --*/

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

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

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

/*-- Price Filter --*/

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

.noUi-target {
  background-color: #EFEFEF !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none !important;
  border-radius: 4px;
}

.noUi-connect {
  background-color: #05422C !important;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 18px !important;
  height: 18px !important;
  right: -9px !important;
  left: auto !important;
  top: -6px !important;
  border: 2px solid #05422C !important;
  background: #FFF !important;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  border-radius: 50% !important;
  cursor: pointer;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none !important;
}

.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: #05422C;
}

.store-grid li.active {
  background-color: #05422C;
  border-color: #05422C;
  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: #05422C;
}

.store-pagination li.active {
  background-color: #05422C;
  border-color: #05422C;
  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: #05422C;
}

#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: #05422C;
}

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

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

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

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

.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: #05422C;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #05422C;
  border-color: #05422C;
  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: #05422C;
}

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

.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: #05422C;
  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: #05422C;
}

.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: #05422C;
}

.reviews-pagination li.active {
  background-color: #05422C;
  border-color: #05422C;
  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: #05422C;
}

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

/*=========================================================
	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: #05422C;
}

.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 #05422C;
  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: #05422C;
  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: #05422C;
}

/*=========================================================
	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: #05422C;
  width: 14px;
  text-align: center;
}

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

.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: #05422C;
  border-color: #05422C;
}

.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: #05422C;
}

.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%;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .store-grid {
    float: none;
    margin-top: 10px;
  }

  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}

/*=========================================================
   PREMIUM REDESIGN OVERRIDES (FOREST GREEN & LEXEND THEME)
===========================================================*/

:root {
  --primary-color: #05422C;
  --accent-color: #17AF26;
  --yellow-color: #F2BC1B;
  --red-color: #EB2606;
  --light-gray: #F4F6F4;
  --border-gray: #E4E7ED;
  --text-dark: #1A1E26;
  --text-gray: #717378;
  --font-lexend: 'Lexend', sans-serif;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --card-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Universal Typography */
body,
h1,
h2,
h3,
h4,
h5,
h6,
.input,
button,
a,
p,
span,
li {
  font-family: var(--font-lexend) !important;
}

/* Universal Typography Weights */
h1, h2, h3 {
  font-weight: 600 !important;
}
h4, h5, h6 {
  font-weight: 500 !important;
}
p {
  font-weight: 400 !important;
}

body {
  color: var(--text-dark);
  background-color: #FAFAFA;
}

/* --- Header Redesign --- */
#top-header {
  background-color: var(--primary-color) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-promo-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px 0;
  color: #FFF;
  font-size: 13px;
  font-weight: 400;
}

.top-promo-text {
  letter-spacing: 0.5px;
}

.top-promo-timer {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.timer-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
}

#header {
  background-color: #FFFFFF !important;
  border-bottom: 1px solid var(--border-gray);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}

.logo-container {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  text-decoration: none !important;
}

.logo-payz {
  color: var(--primary-color) !important;
}

.logo-mall {
  color: var(--accent-color) !important;
}

/* Search bar styling */
.header-search {
  padding: 10px 0px !important;
}

.header-search form {
  display: flex;
  background: #FFF;
  border: 1px solid var(--border-gray);
  border-radius: 100px;
  overflow: hidden;
  padding: 2px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.header-search form:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(23, 175, 38, 0.15);
}

.header-search .input {
  border: none !important;
  background: transparent !important;
  height: 44px;
  padding-left: 20px !important;
  font-size: 15px !important;
  outline: none !important;
  box-shadow: none !important;
}

.header-search .input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}


.header-search .search-btn {
  height: 44px !important;
  width: 44px !important;
  border-radius: 50% !important;
  background: var(--accent-color) !important;
  color: #FFF !important;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.header-search .search-btn:hover {
  background: #149420 !important;
  transform: scale(1.05);
}

/* Cart & Account items */
.header-ctn {
  padding: 10px 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

@media (max-width: 480px) {
  .header-ctn {
    gap: 15px;
  }
}

.header-ctn>div>a {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
  width: auto !important;
}

.header-ctn>div>a:hover {
  color: var(--accent-color) !important;
}

.header-ctn>div>a>i {
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.header-ctn>div>a:hover>i {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.header-ctn .qty {
  background-color: var(--red-color) !important;
  font-size: 10px !important;
  font-weight: 700;
  height: 18px !important;
  width: 18px !important;
  line-height: 18px !important;
  top: -8px !important;
  right: -8px !important;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #FFF;
}

/* --- Dynamic Sub-Navbar Navigation --- */
#navigation {
  background: #FFF !important;
  border-top: none !important;
  border-bottom: 1px solid var(--border-gray) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  padding: 5px 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.main-nav>li {
  margin: 0 !important;
}

.main-nav>li>a {
  color: var(--text-gray) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  padding: 12px 20px !important;
  border-radius: 40px;
  transition: var(--transition-smooth) !important;
  display: inline-block;
}

.main-nav>li>a:after {
  display: none !important;
  /* Remove legacy line underline */
}

.main-nav>li>a:hover,
.main-nav>li.active>a {
  color: var(--primary-color) !important;
  background-color: var(--light-gray) !important;
}

/* --- Premium Hero Section --- */
.premium-hero {
  position: relative;
  background: linear-gradient(135deg, #648A7C 0%, var(--primary-color) 100%);
  border-radius: 24px;
  overflow: hidden;
  padding: 80px 60px;
  margin: 20px 0 40px 0;
  color: #FFF;
  box-shadow: 0 20px 40px rgba(5, 66, 44, 0.15);
}

.hero-diagonal-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewX(-15deg) translateX(20%);
  pointer-events: none;
}

.hero-badge-yellow {
  display: inline-block;
  background-color: var(--yellow-color);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(242, 188, 27, 0.3);
}

.hero-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
  color: #FFF;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-promo-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
  font-size: 18px;
  font-weight: 500;
}

.hero-promo-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-btn {
  background-color: #05422C !important;
  color: #FFF !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 16px 40px !important;
  border-radius: 100px !important;
  box-shadow: 0 8px 20px rgba(23, 175, 38, 0.3) !important;
  transition: var(--transition-smooth) !important;
}

.hero-btn:hover {
  background-color: #149420 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(23, 175, 38, 0.4) !important;
}

/* --- Premium Features Row --- */
.features-container {
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .features-container {
    display: none !important;
  }
}

.features-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.feature-card {
  flex: 1;
  background: #FFF;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.feature-icon-wrapper {
  background: var(--light-gray);
  color: var(--primary-color);
  min-width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary-color);
  color: #FFF;
  transform: scale(1.05);
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.feature-content p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

/* --- Premium Product Card --- */
.product {
  background: #FFF !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: var(--card-shadow) !important;
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
  transition: var(--transition-smooth) !important;
  margin-bottom: 30px !important;
  display: flex;
  flex-direction: column;
  height: calc(100% - 30px);
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover) !important;
}

.product .product-img {
  background-color: var(--light-gray) !important;
  padding: 20px !important;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
}

.product .product-img img {
  max-height: 100% !important;
  width: auto !important;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.product:hover .product-img img {
  transform: scale(1.08);
}

/* Discount and custom badges */
.product-label {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  right: auto !important;
  bottom: auto !important;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  z-index: 10 !important;
  background: transparent !important;
}

.product-label span.new {
  display: inline-block !important;
  background-color: var(--red-color) !important;
  color: #FFF !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 10px rgba(235, 38, 6, 0.25) !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  text-align: center !important;
}

.product-label span.out-of-stock {
  display: inline-block !important;
  background-color: var(--text-dark) !important;
  color: #FFF !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  width: auto !important;
  height: auto !important;
  text-align: center !important;
}

.product-label span.custom-badge {
  display: inline-block !important;
  background-color: var(--yellow-color) !important;
  color: var(--text-dark) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  width: auto !important;
  height: auto !important;
  text-align: center !important;
}

.product-body {
  padding: 20px !important;
  text-align: left !important;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-category {
  font-size: 11px !important;
  text-transform: uppercase !important;
  color: var(--text-gray) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  margin-bottom: 6px !important;
}

.product-name {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 8px !important;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-name a {
  color: var(--text-dark) !important;
  text-decoration: none !important;
  transition: var(--transition-smooth);
}

.product-name a:hover {
  color: var(--accent-color) !important;
}

/* Premium Star rating row */
.rating-reviews-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 12px;
}

.rating-score {
  font-weight: 600;
  color: var(--text-dark);
}

.rating-stars-gold {
  color: var(--yellow-color);
  font-size: 11px;
}

.reviews-count {
  color: var(--text-gray);
  font-size: 12px;
}

/* Indica/Sativa tags */
.weed-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}

.weed-pill-tag {
  background: var(--light-gray);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
  border: 1px solid rgba(5, 66, 44, 0.05);
}

.weed-pill-tag.indica {
  background: #E8F4EC;
  color: var(--primary-color);
}

.weed-pill-tag.sativa {
  background: #FEF9E6;
  color: #B2820A;
}

.product-price {
  color: var(--red-color) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-old-price {
  font-size: 14px !important;
  color: var(--text-gray) !important;
  font-weight: 400 !important;
}

.product-price-unit {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 400;
}

.add-to-cart {
  position: static !important;
  opacity: 1 !important;
  background: transparent !important;
  padding: 0 20px 20px 20px !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.product:hover .add-to-cart {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.add-to-cart-btn {
  width: 100%;
  height: 42px;
  background-color: #05422C !important;
  color: #FFF !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-transform: none !important;
  border: none !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth) !important;
}

.add-to-cart-btn:hover {
  background-color: #149420 !important;
  box-shadow: 0 4px 12px rgba(23, 175, 38, 0.25);
  transform: translateY(-1px);
}

.product-btns {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 12px;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.product:hover .product-btns {
  opacity: 1;
}

.product-btns button {
  background: #FFF !important;
  border: 1px solid var(--border-gray) !important;
  color: var(--text-dark) !important;
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px !important;
  transition: var(--transition-smooth) !important;
}

.product-btns button:hover {
  background: var(--light-gray) !important;
  color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
}

/* --- Section Titles & Headers --- */
.section-title {
  margin-bottom: 30px !important;
  border-bottom: 2px solid var(--border-gray);
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title h3.title {
  font-size: 24px;
  font-weight: 700;
  text-transform: none !important;
  color: var(--text-dark);
  margin: 0;
}

.view-more,
.show-all-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color) !important;
  text-decoration: none !important;
  transition: var(--transition-smooth);
}

.view-more:hover,
.show-all-link:hover {
  color: #149420 !important;
  letter-spacing: 0.5px;
}

/* Choose Your Weed Tabs */
.choose-weed-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.choose-weed-nav button {
  background: #FFF;
  border: 1px solid var(--border-gray);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.choose-weed-nav button:hover,
.choose-weed-nav button.active {
  background: var(--light-gray);
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
}

/* --- Newsletter Section Redesign --- */
#newsletter {
  background-color: var(--light-gray) !important;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 60px 0 !important;
}

.newsletter {
  text-align: center;
}

.newsletter p {
  font-size: 18px !important;
  color: var(--text-gray) !important;
  margin-bottom: 20px !important;
}

.newsletter p strong {
  color: var(--primary-color);
  font-weight: 700;
}

.newsletter form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  background: #FFF;
  border: 1px solid var(--border-gray);
  border-radius: 100px;
  overflow: hidden;
  padding: 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.newsletter form input {
  border: none !important;
  background: transparent !important;
  height: 48px !important;
  padding-left: 24px !important;
  font-size: 15px !important;
  flex: 1;
}

.newsletter form .newsletter-btn {
  background: var(--primary-color) !important;
  color: #FFF !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 0 30px !important;
  border-radius: 100px !important;
  height: 48px !important;
  border: none !important;
  transition: var(--transition-smooth) !important;
}

.newsletter form .newsletter-btn:hover {
  background: var(--accent-color) !important;
  box-shadow: 0 4px 12px rgba(23, 175, 38, 0.2);
}

/* --- Footer Overhaul --- */
#footer {
  background-color: var(--primary-color) !important;
  color: #E8F4EC !important;
  padding-top: 60px !important;
  font-size: 14px;
}

.footer-title {
  color: #FFF !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 25px !important;
  position: relative;
}

.footer-links li {
  margin-bottom: 12px !important;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: var(--transition-smooth) !important;
}

.footer-links li a:hover {
  color: var(--yellow-color) !important;
  padding-left: 4px;
}

.footer-links li i {
  color: var(--yellow-color) !important;
}

/* --- RESPONSIVE MOBILE OVERRIDES --- */
@media only screen and (max-width: 991px) {
  .logo-container {
    font-size: 26px;
  }

  .header-ctn {
    gap: 15px;
  }

  .main-nav {
    justify-content: center !important;
    padding: 10px !important;
  }

  .logo-col {
    order: 1 !important;
  }

  .cart-col {
    order: 2 !important;
  }

  .search-col {
    order: 3 !important;
  }

  .header-logo {
    text-align: left !important;
  }
}

@media only screen and (max-width: 767px) {

  /* Scale down standard headings globally on mobile views */
  h1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 20px !important;
  }

  h3:not(.product-name) {
    font-size: 18px !important;
  }

  h4:not(.product-price) {
    font-size: 16px !important;
  }

  h5 {
    font-size: 14px !important;
  }

  h6 {
    font-size: 12px !important;
  }

  /* Hard reset to prevent any white line or whitespace above/beside the top promo banner */
  html {
    background-color: var(--primary-color) !important;
  }

  app-root,
  app-header-component,
  app-fotter-component {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  #top-header,
  #footer {
    margin-left: -10px !important;
    margin-right: -10px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  #top-header {
    margin-top: 0 !important;
    top: 0 !important;
  }


  /* Specific component headings adjustments */
  .section-title h3.title {
    font-size: 18px !important;
  }

  .testimonials-green-card h3 {
    font-size: 20px !important;
  }

  .best-sellers-green-card h3 {
    font-size: 20px !important;
  }

  .premium-hero {
    padding: 40px 24px;
    border-radius: 16px;
    margin: 10px 0 25px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-promo-row {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .hero-btn {
    padding: 12px 30px !important;
    font-size: 15px !important;
  }

  .features-row {
    flex-direction: column;
    gap: 15px;
  }

  .feature-card {
    padding: 20px;
  }

  .section-title:has(.choose-weed-nav) {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 0px !important;
  }

  .choose-weed-nav {
    gap: 8px;
    margin-bottom: 0 !important;
    width: 100% !important;
  }

  .choose-weed-nav button {
    padding: 8px 16px;
    font-size: 13px;
  }

  .top-promo-banner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 6px 10px;
  }

  /* Premium horizontal scroll navigation for mobile views */
  .main-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding: 8px 0 !important;
    gap: 8px !important;
  }

  .main-nav::-webkit-scrollbar {
    display: none !important;
  }

  .main-nav>li {
    flex: 0 0 auto !important;
    display: inline-block !important;
  }

  .main-nav>li>a {
    padding: 8px 16px !important;
    font-size: 14px !important;
  }

  /* Scale down section paddings on mobile to prevent massive gaps */
  .section {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .blog-section {
    padding: 30px 0 !important;
  }

  .testimonials-section {
    padding: 30px 0 !important;
  }

  #newsletter {
    padding: 30px 0 !important;
  }

  #footer {
    padding-top: 30px !important;
  }
}

@media only screen and (max-width: 480px) {

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .row {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  /* 2 Column compact grid for mobile product list */
  .col-xs-6 {
    width: 50% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .product {
    margin-bottom: 16px !important;
    border-radius: 12px !important;
  }

  .product .product-img {
    height: 140px;
    padding: 10px !important;
  }

  .product-body {
    padding: 12px !important;
  }

  .product-name {
    font-size: 13px !important;
    height: 36px;
    margin-bottom: 4px !important;
  }

  .rating-reviews-row {
    font-size: 11px;
    gap: 4px;
    margin-bottom: 6px;
  }

  .weed-pill-tag {
    font-size: 9px;
    padding: 2px 8px;
  }

  .product-price {
    font-size: 14px !important;
    margin-bottom: 10px !important;
    flex-wrap: wrap;
  }

  .product-old-price {
    font-size: 11px !important;
  }

  .add-to-cart-btn {
    height: 34px;
    font-size: 12px !important;
    border-radius: 6px !important;
  }

  .add-to-cart {
    padding: 0 12px 12px 12px !important;
  }

  .product-btns {
    display: none !important;
    /* Hide tiny utility buttons on compact mobile view */
  }
}

/* --- Redesigned Testimonials Section --- */
.testimonials-section {
  padding: 30px 0;
  background-color: #FAFAFA;
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonials-green-card {
  flex: 1;
  min-width: 320px;
  background: var(--primary-color);
  color: #FFF;
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(5, 66, 44, 0.1);
}

.testimonials-green-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #FFF !important;
  line-height: 1.3;
  margin-bottom: 25px;
}

.google-review-badge {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}

.google-logo-svg {
  width: 100px;
  margin-bottom: 12px;
}

.google-review-stars {
  display: flex;
  gap: 4px;
  color: var(--yellow-color);
  font-size: 16px;
  margin-bottom: 8px;
}

.google-review-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-card {
  flex: 2;
  min-width: 320px;
  background: #FFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-gray);
  padding-bottom: 15px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--light-gray);
}

.testimonial-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 4px 0;
}

.testimonial-info .testimonial-date {
  font-size: 12px;
  color: var(--text-gray);
}

.testimonial-content {
  flex: 1;
}

.testimonial-stars {
  color: var(--yellow-color);
  font-size: 12px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

/* --- Refer a Friend Promo Banner --- */
.refer-friend-banner {
  background: linear-gradient(135deg, #1A1E26 0%, #11141A 100%);
  border-radius: 24px;
  padding: 60px;
  color: #FFF;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.refer-content-box h2 {
  font-size: 40px;
  font-weight: 700;
  color: #FFF !important;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.refer-content-box p {
  font-size: 20px;
  color: var(--accent-color);
  font-weight: 600;
  margin: 0;
}

.refer-btn {
  background-color: var(--accent-color) !important;
  color: #FFF !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 16px 40px !important;
  border-radius: 100px !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(23, 175, 38, 0.3) !important;
  transition: var(--transition-smooth) !important;
}

.refer-btn:hover {
  background-color: #149420 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(23, 175, 38, 0.4) !important;
}

/* --- How to Order Weed Section --- */
.how-order-section {
  padding: 60px 0;
  background-color: #FAFAFA;
}

.section-intro-text {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 40px;
}

.how-order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.step-card {
  background: #FFF;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: var(--card-shadow);
  position: relative;
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(5, 66, 44, 0.06);
  position: absolute;
  top: 15px;
  right: 25px;
  line-height: 1;
}

.step-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.step-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* --- Makes Us #1 Section --- */
.makes-us-section {
  padding: 60px 0;
}

.makes-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.makes-us-box {
  background: #FFF;
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.makes-us-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.makes-us-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--light-gray);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.makes-us-box:hover .makes-us-icon {
  background-color: var(--primary-color);
  color: #FFF;
}

.makes-us-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.makes-us-box p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* --- Indica / Sativa / Hybrids Columns --- */
.weed-types-section {
  padding: 60px 0;
  background-color: #FAFAFA;
}

.weed-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.weed-type-column {
  background: #FFF;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.weed-type-column:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.weed-type-header h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.weed-type-header p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.weed-type-pill {
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.weed-type-pill.indica-pill {
  background: #E8F4EC;
  color: var(--primary-color);
}

.weed-type-pill.sativa-pill {
  background: #FEF9E6;
  color: #B2820A;
}

.weed-type-pill.hybrid-pill {
  background: #F1E8F7;
  color: #7D26CD;
}

.shop-type-btn {
  background-color: var(--light-gray) !important;
  color: var(--primary-color) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 12px 0 !important;
  width: 100%;
  border-radius: 100px !important;
  text-align: center;
  transition: var(--transition-smooth) !important;
  border: 1px solid transparent !important;
}

.weed-type-column:hover .shop-type-btn {
  background-color: var(--primary-color) !important;
  color: #FFF !important;
  box-shadow: 0 5px 15px rgba(5, 66, 44, 0.2);
}

/* --- Blog / Weed Education Section --- */
.blog-section {
  padding: 30px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #FFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.blog-image-wrapper {
  height: 200px;
  background-color: var(--light-gray);
  overflow: hidden;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.05);
}

.blog-body-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.blog-meta-date {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.blog-card h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 12px;
  height: 50px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color) !important;
  text-decoration: underline !important;
  transition: var(--transition-smooth);
}

.read-more-link:hover {
  color: #149420 !important;
}

/* --- Left-Aligned Best Sellers Card inside Products Grid --- */
.best-sellers-row {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.best-sellers-green-card {
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 45px 35px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(5, 66, 44, 0.1);
  min-height: 480px;
}

.best-sellers-green-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #FFF !important;
  line-height: 1.3;
  margin-bottom: 15px;
}

.best-sellers-green-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 30px;
}

.best-sellers-view-all {
  font-size: 15px;
  font-weight: 600;
  color: var(--yellow-color) !important;
  text-decoration: underline !important;
  transition: var(--transition-smooth);
}

.best-sellers-view-all:hover {
  color: #FFF !important;
}

/* Responsive adjustment for makes-us & steps */
@media only screen and (max-width: 991px) {
  .refer-friend-banner {
    padding: 40px;
    text-align: center;
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {

  .testimonials-grid,
  .weed-types-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .makes-us-grid {
    grid-template-columns: 1fr;
  }
}

/* Center all Bootstrap modals vertically */
.modal {
  text-align: center;
  padding: 0 !important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px; /* Adjusts for spacing */
}

.modal-dialog {
  display: inline-block !important;
  text-align: left;
  vertical-align: middle !important;
}

/* --- Premium Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  right: 24px;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner.show {
  bottom: 24px;
  opacity: 1;
  pointer-events: auto;
}

.cookie-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cookie-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(5, 66, 44, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cookie-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 6px 0 !important;
}

.cookie-text p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0 !important;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

.cookie-btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-family: var(--font-lexend);
}

.decline-btn {
  background: transparent;
  color: var(--text-gray);
  border: 1px solid var(--border-gray);
}

.decline-btn:hover {
  background: var(--light-gray);
  color: var(--text-dark);
}

.accept-btn {
  background-color: var(--primary-color);
  color: #FFF;
  box-shadow: 0 4px 12px rgba(5, 66, 44, 0.15);
}

.accept-btn:hover {
  background-color: #032b1d;
  box-shadow: 0 6px 16px rgba(5, 66, 44, 0.25);
  transform: translateY(-1px);
}

@media (max-width: 576px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: -300px;
    padding: 20px;
  }
  
  .cookie-banner.show {
    bottom: 16px;
  }
  
  .cookie-actions {
    flex-direction: column-reverse;
    margin-top: 20px;
    gap: 12px !important;
  }
  
  .cookie-btn {
    width: 100%;
  }
}