/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: green
	Dark 		: green ##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: green;
  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: green;
  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: red;
}

/*----------------------------*\
	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: green;
}

/*-- 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: green;
  border-color: green;
}

.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: green;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: green;
}

.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: green;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: green;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 16px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: #FFF;
}

.header-links li a:hover {
  color: green;
}

.header-links li i {
  color: green;
  margin-right: 5px;
}

/*----------------------------*\
	Logo & Header - CUTTING EDGE DESIGN
\*----------------------------*/

#header {
    padding: 15px 0;
    background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 100;
}

#header .row {
    align-items: center;
}

#header .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

#header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 20%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.3) 80%, 
        transparent 100%);
    animation: shimmer-line 3s infinite;
}

@keyframes shimmer-line {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Logo - Cutting Edge Design */
.header-logo {
  float: left;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  padding: 8px;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-wrapper:hover .logo-glow {
  opacity: 1;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

.logo-image {
  display: block;
  height: 55px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.logo-wrapper:hover .logo-image {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.3));
}

.logo-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  box-shadow: 0 3px 10px rgba(255, 107, 107, 0.5);
  animation: bounce-badge 2s infinite;
  z-index: 3;
}

@keyframes bounce-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/*----------------------------*\
	Search - CUTTING EDGE DESIGN
\*----------------------------*/

.search-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  padding: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.search-wrapper:focus-within {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.search-icon-left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #00C851;
  font-size: 18px;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 10px;
  font-size: 15px;
  color: #2c3e50;
  font-weight: 500;
}

.search-input::placeholder {
  color: #6c757d;
  font-weight: 400;
}

.search-clear-btn,
.search-voice-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #6c757d;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-clear-btn:hover {
  background: #f8f9fa;
  color: #ff6b6b;
}

.search-voice-btn {
  background: linear-gradient(135deg, #00C851, #007E33);
  color: white;
  margin-left: 5px;
  position: relative;
}

.search-voice-btn:hover {
  background: linear-gradient(135deg, #007E33, #00C851);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 200, 81, 0.4);
}

.search-voice-btn:active {
  animation: pulse-voice 0.5s ease;
}

@keyframes pulse-voice {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Search Results Dropdown */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-height: 450px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-results-dropdown::-webkit-scrollbar {
  width: 6px;
}

.search-results-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
  background: #00C851;
  border-radius: 10px;
}

/* Search Suggestions */
.search-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
}

.suggestion-label {
  font-size: 13px;
  color: #6c757d;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.suggestion-label i {
  color: #00C851;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 13px;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.suggestion-tag i {
  color: #00C851;
  font-size: 14px;
}

.suggestion-tag:hover {
  background: linear-gradient(135deg, #00C851, #007E33);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
}

.suggestion-tag:hover i {
  color: white;
}

/* Header Actions */
.header-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

/* Mobile Header Actions - Below Search */
.header-actions-mobile {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding-bottom: 5px;
}

/* Ensure mobile buttons are hidden on desktop */
@media (min-width: 768px) {
  .header-actions-mobile {
    display: none !important;
  }
}

/* Ensure desktop buttons are hidden on mobile */
@media (max-width: 767px) {
  .header-actions {
    display: none !important;
  }
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  white-space: nowrap;
}

.action-btn i {
  font-size: 18px;
}

.whatsapp-btn {
  background: rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
}

.call-btn {
  background: rgba(255, 255, 255, 0.2);
}

.call-btn:hover {
  background: white;
  color: #00C851;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
  .logo-image {
    height: 45px;
  }
  
  .search-wrapper {
    border-radius: 25px;
  }
  
  .search-input {
    font-size: 14px;
    padding: 10px 8px;
  }
  
  .search-icon-left {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .search-clear-btn,
  .search-voice-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  #header {
    padding: 12px 0;
  }
  
  .logo-image {
    height: 40px;
  }
  
  .logo-badge {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
  
  .search-input::placeholder {
    font-size: 13px;
  }
  
  .suggestion-tags {
    gap: 8px;
  }
  
  .suggestion-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .search-input {
    font-size: 13px;
    padding: 8px 6px;
  }
  
  .search-icon-left {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .search-clear-btn,
  .search-voice-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  
  .header-actions-mobile .action-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .header-actions-mobile {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*----------------------------*\
	Cart (Legacy)
\*----------------------------*/

.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;
  transition: transform 0.3s ease;
}

.header-ctn>div>a:hover {
  transform: translateY(-3px);
}

.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: #ff6b6b;
  animation: pulse-qty 2s infinite;
}

@keyframes pulse-qty {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.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: #00C851;
  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 - DRAMATIC MODERN REDESIGN
===========================================================*/

#navigation {
  background: #ffffff;
  border-bottom: none;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 99;
  transition: all 0.3s ease;
}

#navigation.scrolled {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

/* Container Styling */
#navigation .container {
  position: relative;
}

#navigation .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #00C851 20%, 
    #007E33 50%, 
    #00C851 80%, 
    transparent 100%);
}

/*----------------------------*\
	Main nav - DRAMATIC REDESIGN
\*----------------------------*/

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

.main-nav>li {
  position: relative;
  margin: 5px 8px;
}

.main-nav>li>a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #2c3e50;
  background: #f8f9fa;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.main-nav>li>a i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.main-nav>li>a span {
  position: relative;
  z-index: 2;
}

/* Hover Effects */
.main-nav>li>a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
  border-color: #00C851;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 200, 81, 0.3);
}

.main-nav>li>a:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Active State */
.main-nav>li.active>a {
  color: #ffffff;
  background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
  border-color: #00C851;
  box-shadow: 0 6px 20px rgba(0, 200, 81, 0.4);
}

.main-nav>li.active>a i {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Nav Arrow (Desktop Hidden) */
.nav-arrow {
  display: none;
}

/* Nav Badge */
.nav-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(255, 107, 107, 0.4);
  animation: pulse-badge 2s infinite;
}

/* Special Nav Items */
.nav-item-home>a {
  background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
  color: white;
  border-color: #00C851;
}

.nav-item-home>a:hover {
  background: linear-gradient(135deg, #007E33 0%, #00C851 100%);
  transform: translateY(-3px) scale(1.05);
}

.nav-item-special>a {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-color: #25D366;
  position: relative;
}

.nav-item-special>a:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  transform: translateY(-3px) scale(1.05);
}

/* Shine Effect */
.main-nav>li>a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.main-nav>li>a:hover::before {
  left: 100%;
}

/* Remove old underline effect */
.main-nav>li>a:after {
  display: none;
}

/*----------------------------*\
	Mobile Menu - DRAMATIC REDESIGN
\*----------------------------*/

.mobile-menu-header {
  display: none;
}

.close-menu {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  
  .header-ctn .menu-toggle a {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .header-ctn .menu-toggle a:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #00C851 0%, #007E33 100%);
    height: 100vh;
    max-width: 320px;
    width: 0%;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 999;
    padding-top: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.4s all cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: 0.4s all cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3);
  }
  
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  
  /* Mobile Menu Header */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-menu-header h3 {
    color: white;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .close-menu {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .close-menu:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
  }
  
  .main-nav {
    margin: 0px;
    float: none;
    display: block;
    padding: 20px 0;
  }
  
  .main-nav>li {
    display: block;
    float: none;
    margin: 8px 15px;
  }
  
  .main-nav>li>a {
    padding: 15px 20px;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }
  
  .main-nav>li>a i:first-child {
    font-size: 18px;
  }
  
  /* Show arrow on mobile */
  .nav-arrow {
    display: block;
    opacity: 0.6;
    transition: all 0.3s ease;
  }
  
  .main-nav>li>a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }
  
  .main-nav>li>a:hover .nav-arrow {
    opacity: 1;
    transform: translateX(5px);
  }
  
  .main-nav>li.active>a {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    border-left: 5px solid #fff;
  }
  
  /* Special items on mobile */
  .nav-item-home>a,
  .nav-item-special>a {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .nav-badge {
    position: static;
    margin-left: auto;
  }
}

/* Sticky Navigation Effect */
@media (min-width: 992px) {
  #navigation.scrolled {
    padding: 5px 0;
  }
  
  #navigation.scrolled .main-nav>li>a {
    padding: 10px 18px;
  }
}

/*=========================================================
	04 -> TOP CATEGORIES - MODERN BEAUTIFUL DESIGN
===========================================================*/

.top-categories-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* SVG Background Pattern */
.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Animated Shapes */
.float-shape-1 {
  animation: float-up-down 8s infinite ease-in-out;
}

.float-shape-2 {
  animation: float-up-down 10s infinite ease-in-out 1s;
}

.float-shape-3 {
  animation: float-up-down 12s infinite ease-in-out 2s;
}

.float-shape-4 {
  animation: rotate-shape 15s infinite linear;
}

.float-shape-5 {
  animation: rotate-shape 12s infinite linear reverse;
}

.float-shape-6 {
  animation: float-side 10s infinite ease-in-out;
}

.float-shape-7 {
  animation: float-side 14s infinite ease-in-out 2s;
}

.float-shape-8 {
  animation: pulse-star 3s infinite ease-in-out;
}

.wave-line-1 {
  animation: wave-move 8s infinite ease-in-out;
}

.wave-line-2 {
  animation: wave-move 10s infinite ease-in-out reverse;
}

@keyframes float-up-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

@keyframes float-side {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}

@keyframes rotate-shape {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-star {
  0%, 100% { transform: scale(1); opacity: 0.07; }
  50% { transform: scale(1.2); opacity: 0.12; }
}

@keyframes wave-move {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}

/* Section Title - Modern Design */
.section-title-modern {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.title-badge {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 20px rgba(0, 200, 81, 0.3);
  animation: rotate-badge 10s linear infinite;
}

@keyframes rotate-badge {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.title-badge i {
  color: white;
  font-size: 24px;
}

.title-main {
  font-size: 42px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-subtitle {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 20px;
}

.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00C851, #007E33);
  margin: 0 auto;
  border-radius: 2px;
}

/* Categories Grid */
.categories-grid {
  margin-top: 30px;
}

/* Category Card */
.category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin-bottom: 25px;
  position: relative;
  border: 1px solid #e9ecef;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 200, 81, 0.15);
  border-color: #00C851;
}

/* Category Image */
.category-image-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image {
  transform: scale(1.15);
}

/* Category Overlay */
.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 200, 81, 0.9) 0%, rgba(0, 126, 51, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.category-card:hover .category-overlay-content {
  transform: translateY(0);
}

.category-overlay-content i {
  font-size: 36px;
  margin-bottom: 8px;
  display: block;
}

.category-overlay-content span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Trending Badge */
.trending-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
  z-index: 5;
  animation: pulse-badge 2s infinite;
}

.trending-badge i {
  margin-right: 5px;
  animation: fire-flicker 1.5s infinite;
}

@keyframes fire-flicker {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Category Content */
.category-content {
  padding: 25px 18px 20px;
  text-align: center;
  position: relative;
}

.category-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -40px auto 15px;
  box-shadow: 0 5px 20px rgba(0, 200, 81, 0.3);
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: rotate(360deg);
}

.category-icon i {
  color: white;
  font-size: 24px;
}

.category-name {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-subtitle {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Category Actions */
.category-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-btn {
  flex: 1;
  min-width: 120px;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px solid transparent;
}

.category-btn i {
  font-size: 14px;
}

/* WhatsApp Button */
.category-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.category-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

/* Browse Button */
.category-btn-browse {
  background: white;
  color: #00C851;
  border-color: #00C851;
}

.category-btn-browse:hover {
  background: #00C851;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 200, 81, 0.3);
}

/* Decorative Shine Effect */
.category-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
  pointer-events: none;
}

.category-card:hover .category-shine {
  left: 100%;
}

/* Legacy Shop Styles - Keep for backward compatibility */
.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
  height:200px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: green;
  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: green;
  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;
}

/* Responsive Design */
@media (max-width: 991px) {
  .title-main {
    font-size: 36px;
  }
  
  .category-image-wrapper {
    height: 220px;
  }
  
  .category-name {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .top-categories-section {
    padding: 40px 0;
  }
  
  .section-title-modern {
    margin-bottom: 35px;
  }
  
  .title-main {
    font-size: 32px;
  }
  
  .title-subtitle {
    font-size: 14px;
  }
  
  .category-card {
    margin-bottom: 20px;
  }
  
  .category-image-wrapper {
    height: 160px;
  }
  
  .category-content {
    padding: 20px 15px 18px;
  }
  
  .category-name {
    font-size: 16px;
  }
  
  .category-actions {
    flex-direction: column;
  }
  
  .category-btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 575px) {
  .title-main {
    font-size: 28px;
  }
  
  .category-image-wrapper {
    height: 160px;
  }
  
  .category-icon {
    width: 45px;
    height: 45px;
    margin-top: -35px;
  }
  
  .category-icon i {
    font-size: 20px;
  }
  
  .category-name {
    font-size: 16px;
  }
  
  .category-btn {
    padding: 9px 14px;
    font-size: 11px;
  }
}

/*=========================================================
	05 -> HOT DEAL - ELEGANT CLEAN DESIGN
===========================================================*/

#hot-deal.section {
  padding: 60px 0px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

/* Hot Deal Wrapper */
.hot-deal-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: visible;
  border: 1px solid #e9ecef;
}

/* Elegant Corner Ribbon */
.hot-deal-ribbon {
  position: absolute;
  top: 20px;
  right: -5px;
  z-index: 10;
}

.hot-deal-ribbon span {
  display: block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  padding: 10px 25px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
}

.hot-deal-ribbon span i {
  margin-right: 6px;
  animation: bolt-flash 2s infinite;
}

@keyframes bolt-flash {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.hot-deal-ribbon span::after {
  content: '';
  position: absolute;
  right: 0;
  top: 100%;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #c0392b transparent transparent;
}

/* Hot Deal Content */
.hot-deal-content {
  text-align: center;
  padding: 20px 0;
}

/* Timer Label */
.hot-deal-timer-label {
  color: #495057;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hot-deal-timer-label i {
  margin-right: 6px;
  font-size: 16px;
  color: #00C851;
}

/* Countdown Timer - Clean Box Style */
.hot-deal-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.hot-deal-countdown > li {
  list-style: none;
}

/* Countdown Box */
.countdown-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 15px 20px;
  min-width: 85px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.countdown-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 200, 81, 0.15);
  border-color: #00C851;
}

.countdown-number {
  font-size: 36px;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.countdown-number.flip {
  animation: flipNumber 0.6s ease;
}

@keyframes flipNumber {
  0% { transform: rotateX(0deg); }
  50% { transform: rotateX(90deg); }
  100% { transform: rotateX(0deg); }
}

.countdown-label {
  font-size: 11px;
  color: #6c757d;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Countdown Separator */
.countdown-separator {
  font-size: 32px;
  font-weight: 700;
  color: #00C851;
  margin: 0 5px;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Deal Title */
.hot-deal-title {
  font-size: 32px;
  font-weight: 800;
  color: #2c3e50;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* Deal Description */
.hot-deal-description {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.hot-deal-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.hot-deal-cta-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.hot-deal-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  color: white;
}

.hot-deal-cta-btn:active {
  transform: translateY(-1px);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.hot-deal-cta-btn:hover .btn-shine {
  left: 100%;
}

/* Side Images */
.hot-deal-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: #f8f9fa;
}

.hot-deal-side-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.hot-deal-image-container:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.hot-deal-image-container:hover .hot-deal-side-image {
  transform: scale(1.05);
}

/* Discount Badge */
.hot-deal-discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
  z-index: 5;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hot-deal-discount-badge span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hot-deal-discount-badge strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin: 3px 0;
}

/* New Badge */
.hot-deal-new-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 200, 81, 0.4);
  z-index: 5;
}

.hot-deal-new-badge i {
  margin-right: 5px;
  animation: star-spin 3s infinite linear;
}

@keyframes star-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Legacy Support */
.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: green;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal-countdown_ {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    background: green;
    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;
}

/* Responsive Design - Enhanced Mobile */
@media (max-width: 991px) {
  .hot-deal-wrapper {
    padding: 40px 25px;
  }
  
  .hot-deal-title {
    font-size: 26px;
  }
  
  .hot-deal-description {
    font-size: 15px;
  }
  
  .countdown-box {
    min-width: 75px;
    padding: 12px 15px;
  }
  
  .countdown-number {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  #hot-deal.section {
    padding: 40px 0px;
  }
  
  .hot-deal-wrapper {
    padding: 35px 20px;
    border-radius: 15px;
  }
  
  .hot-deal-ribbon {
    top: 15px;
    right: -3px;
  }
  
  .hot-deal-ribbon span {
    padding: 8px 20px;
    font-size: 11px;
  }
  
  .hot-deal-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .hot-deal-description {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .hot-deal-timer-label {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .hot-deal-countdown {
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .countdown-box {
    min-width: 65px;
    padding: 10px 12px;
  }
  
  .countdown-number {
    font-size: 26px;
  }
  
  .countdown-label {
    font-size: 10px;
  }
  
  .countdown-separator {
    font-size: 26px;
    margin: 0 3px;
  }
  
  .hot-deal-cta-btn {
    padding: 14px 35px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
  }
  
  .hot-deal-image-container {
    margin-bottom: 20px;
  }
  
  .hot-deal-discount-badge {
    padding: 8px 12px;
    top: 10px;
    left: 10px;
  }
  
  .hot-deal-discount-badge span {
    font-size: 9px;
  }
  
  .hot-deal-discount-badge strong {
    font-size: 20px;
  }
  
  .hot-deal-new-badge {
    padding: 6px 12px;
    font-size: 11px;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 575px) {
  .hot-deal-wrapper {
    padding: 30px 15px;
  }
  
  .hot-deal-countdown {
    gap: 8px;
  }
  
  .countdown-box {
    min-width: 58px;
    padding: 8px 10px;
  }
  
  .countdown-number {
    font-size: 22px;
  }
  
  .countdown-label {
    font-size: 9px;
  }
  
  .countdown-separator {
    font-size: 22px;
    margin: 0 2px;
  }
  
  .hot-deal-title {
    font-size: 20px;
  }
  
  .hot-deal-description {
    font-size: 13px;
  }
  
  .hot-deal-cta-btn {
    padding: 12px 30px;
    font-size: 13px;
  }
}

/*=========================================================
	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 green;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px green;
}

.product .product-img {
  position: relative;
}

.product .product-img>img {
  width: 100%;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color: green;
  color: green;
}

.product .product-img .product-label>span.new {
  background-color: green;
  border-color: green;
  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: green;
}

.product .product-body .product-price {
  color: green;
  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: green;
  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: 7px;
  background: #FFF;
  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%);
}
.add-to-cart-btn-home {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: green;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}
.add-to-cart-btn-home-whatsapp {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: green;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}
/* Product Card Buttons */
.product .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: green;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    border-radius: 40px;
    transition: all 0.2s;
    display: block;
    width: 100%;
    margin-bottom: 8px;
}

.product .add-to-cart .add-to-cart-btn:hover {
    background-color: #FFF;
    color: green;
    border-color: green;
}

.product .add-to-cart .btn-view-details {
    background-color: #007bff;
    border-color: #007bff;
}

.product .add-to-cart .btn-view-details:hover {
    background-color: #FFF;
    color: #007bff;
    border-color: #007bff;
}

.product .add-to-cart .add-to-cart-btn i {
    margin-right: 5px;
    font-size: 14px;
}

.product .add-to-cart a {
    text-decoration: none;
    display: block;
}
.add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: green;
    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: green;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: green;
  border-color: green;
  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: green;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: green;
}

.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;
  display: flex;
  gap: 8px;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 40px;
  height: 40px;
  display: inline-block !important;
  margin: 0;
  flex-shrink: 0;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}

/* Ensure only first prev and first next button show */
.products-slick-nav button:nth-of-type(n+3) {
  display: none !important;
}

/*=========================================================
	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: green;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: green;
  -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: green;
}

.store-grid li.active {
  background-color: green;
  border-color: green;
  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: green;
}

.store-pagination li.active {
  background-color: green;
  border-color: green;
  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: green;
}

#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: green;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: green;
}

.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: green;
}

.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: green;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: green;
  border-color: green;
  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: green;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: green;
  -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: green;
}

.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: green;
  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: green;
}

.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: green;
}

.reviews-pagination li.active {
  background-color: green;
  border-color: green;
  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: green;
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: green;
}

/*=========================================================
	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: green;
}

.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 green;
  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: "\f232";
        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: green;
  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: green;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
  background: green;
  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: green;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: green;
}

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

    .footer-payments li a {
        color: green;
        font-size: 36px;
        display: block;
    }


.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    border: 1px solid #E4E7ED;
    background-color: green;
    color:white;
    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: green;
  border-color: green;
}

.slick-prev:before, .slick-next:before {
  font-family: FontAwesome;
  color: #2B2D42;
}

.slick-prev:before {
  content: "\f104";
  color:white !important;
}

    .slick-next:before {
        content: "\f105";
        color: white !important;
    }

.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: green;
}

.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) {

    .pull-left{
        font-size:25px;
    }
    #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;
  }
}
.logo_sam{
    width:300px;
}
@media only screen and (max-width: 767px) {
    .section-title .section-nav {
        font-size:16px !important;
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
    .header-links li {
        font-size: 25px !important;
    }
}

@media only screen and (max-width: 480px) {
  [class*='col-xs'] {
    width: 100%;
  }
    .header-links li {
        font-size:17px !important;
    }
    .pull-left {
    }
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}
.c_header{
}

.width-search{
    width:550px
}
.small-image {
    height: 150px;
    object-fit: contain;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding:15px;
    width:100%;
}

.text-white{
    color:white !important
}

.full-height-column {
    min-height: 100vh; /* fills entire viewport */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}

@media (max-width: 767.98px) {
    .hide-small {
        display: none !important;
    }
}


.bxq-search-92 {
    background: white;
    border-radius: 30px;
    overflow: hidden;

}

.bxq-select-92,
.bxq-input-92 {
    box-shadow: none !important;
    flex: 1;
}

.bxq-btn-92 {
    background-color: white;
    color: green;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0 20px;
}

.bag-color {
    background-color: green;
}
.image-sides{
    height:250px;
    margin-right:15px
}

.maps{
    height:450px
}

.custome-padding{


}

 
@media (min-width: 576px) {
    .custome-height {
        display: none !important;
    }
   
   
}


@media (min-width: 768px) {
    .custome-height {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hide-small {
        display: none !important;
    }

    .custome-height {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hide-small {
        display: block !important;
    }
    .custome-height {
        display: block !important;
    }

}

@media (min-width: 1400px) {
    .custome-height {
        background-color: green;
        height: 100px
    }
   
    .custome-height {
        display: block !important;
    }

    .hide-small {
        display: block !important;
    }
}


/*# sourceMappingURL=index.css.map */
.custome-shaddow {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
#search-resultss {
    display: none;
    width: 100%;
    max-width: 360px;
    margin-top: 10px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    overflow: hidden;
    padding: 6px;
    z-index: 50;
}
.search-results{
    display:none;
}

.search-bar {
    margin: 20px 0;
    display: flex;
    gap: 8px;
    justify-content:center;
    align-content:center;
    text-align:center;
    flex-direction:column;
}

    .search-bar input {
        width: 100%;
        /*max-width: 320px;*/
        border-radius: 25px;
        padding: 10px 14px;
        border: none;
    }
    
.search-btn {
    background: var(--samchi-white);
    color: var(--samchi-red);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Enhanced Product Card Styling */
.product .add-to-cart {
    padding: 10px;
}

.product:hover .add-to-cart {
    transform: translateY(0);
}

/* Ensure buttons stack properly */
.product .add-to-cart .add-to-cart-btn:last-child {
    margin-bottom: 0;
}

/* Button hover effects */
.product .add-to-cart .add-to-cart-btn:hover i {
    transform: scale(1.1);
}

/* Price formatting improvements */
.product-price,
.product .product-body .product-price {
    font-weight: 700;
}

/* Responsive button sizing */
@media (max-width: 768px) {
    .product .add-to-cart .add-to-cart-btn {
        font-size: 11px;
        padding: 0 20px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .product .add-to-cart .add-to-cart-btn {
        font-size: 10px;
        padding: 0 15px;
        height: 36px;
    }
}


/* ========================================
   MODERN PRODUCT CARD DESIGN
   ======================================== */

.modern-product-card {
    position: relative;
    margin: 15px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modern-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* Product Image Section */
.modern-product-card .product-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f5f5f5;
}

.modern-product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-product-card:hover .product-img img {
    transform: scale(1.1);
}

/* Quick View Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: green;
    color: white;
    transform: scale(1.05);
}

.quick-view-btn i {
    margin-right: 6px;
}

/* Product Body */
.modern-product-card .product-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modern-product-card .product-category {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.modern-product-card .product-name {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 44px;
}

.modern-product-card .product-name a {
    color: #2B2D42;
    text-decoration: none;
    transition: color 0.3s;
}

.modern-product-card .product-name a:hover {
    color: green;
}

.modern-product-card .product-price {
    font-size: 22px;
    font-weight: 700;
    color: green;
    margin-bottom: 10px;
}

.modern-product-card .product-old-price {
    font-size: 16px;
    color: #999;
    margin-left: 8px;
}

/* Loyalty Badge - Green Theme */
.loyalty-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    align-self: flex-start;
}

.loyalty-badge i {
    font-size: 12px;
}

/* Modern Action Buttons */
.product-actions-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 15px;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.btn-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-action i {
    font-size: 20px;
    margin-bottom: 4px;
}

.btn-action span {
    display: block;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Details Button - Green Theme */
.btn-details {
    background: white;
    color: green;
    border: 2px solid green;
}

.btn-details:hover {
    background: green;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.4);
}

/* Product Labels - All Green Theme */
.modern-product-card .product-label {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modern-product-card .product-label span {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-product-card .product-label .sale {
    background: green;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.4);
}

.modern-product-card .product-label .new {
    background: #00C851;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 200, 81, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-product-card .product-img {
        height: 200px;
    }
    
    .modern-product-card .product-body {
        padding: 15px;
    }
    
    .modern-product-card .product-name {
        font-size: 14px;
        min-height: 40px;
    }
    
    .modern-product-card .product-price {
        font-size: 18px;
    }
    
    .product-actions-modern {
        padding: 12px;
        gap: 8px;
    }
    
    .btn-action {
        padding: 10px 8px;
        font-size: 11px;
    }
    
    .btn-action i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .modern-product-card .product-img {
        height: 140px;
    }
    
    .modern-product-card .product-body {
        padding: 10px;
    }
    
    .modern-product-card .product-name {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .modern-product-card .product-category {
        font-size: 10px;
    }
    
    .modern-product-card .product-price {
        font-size: 14px;
    }
    
    .modern-product-card .product-old-price {
        font-size: 11px;
    }
    
    .modern-product-card .loyalty-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .product-actions-modern {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 0 10px 10px;
    }
    
    .btn-action {
        flex-direction: row;
        gap: 6px;
        padding: 8px;
        font-size: 11px;
    }
    
    .btn-action i {
        margin-bottom: 0;
        margin-right: 4px;
        font-size: 12px;
    }
    
    .btn-action span {
        font-size: 11px;
    }
    
    .product-label span {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* Remove old add-to-cart styles for modern cards */
.modern-product-card .add-to-cart {
    display: none;
}

/* Slick slider adjustments for modern cards */
.products-slick .modern-product-card {
    margin: 15px 10px;
}


/* ========================================
   TOP SELLING SECTION - MODERN DESIGN
   ======================================== */

.top-selling-section {
    background: #f9f9f9;
    padding: 50px 0;
}

.top-selling-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.top-selling-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* Top Selling Header */
.top-selling-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.badge-top-selling {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.badge-top-selling i {
    font-size: 12px;
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    color: #2B2D42;
    margin: 0;
}

/* Product Widget Modern */
.product-widget-modern {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.product-widget-modern:hover {
    border-color: green;
    box-shadow: 0 4px 12px rgba(0,128,0,0.1);
    transform: translateX(5px);
}

.widget-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

/* Widget Image */
.widget-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.widget-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-widget-modern:hover .widget-image {
    transform: scale(1.1);
}

.widget-discount {
    position: absolute;
    top: 5px;
    right: 5px;
    background: green;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
}

/* Widget Content */
.widget-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.widget-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #2B2D42;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.widget-link:hover .widget-product-name {
    color: green;
}

.widget-price {
    margin-bottom: 6px;
}

.widget-price .current {
    font-size: 16px;
    font-weight: 700;
    color: green;
}

.widget-price .original {
    font-size: 12px;
    color: #999;
    margin-left: 6px;
}

.widget-loyalty {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 12px;
    align-self: flex-start;
}

.widget-loyalty i {
    color: green;
    font-size: 12px;
}

/* Widget Actions */
.widget-actions {
    margin-top: 10px;
}

.btn-widget-order {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-widget-order:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-widget-order i {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-selling-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .widget-image-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .widget-product-name {
        font-size: 13px;
    }
    
    .widget-price .current {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .top-selling-card {
        padding: 15px;
    }
    
    .widget-link {
        gap: 10px;
    }
    
    .widget-image-wrapper {
        width: 70px;
        height: 70px;
    }
}


/* Mobile Carousel for Categories */
.categories-carousel-wrapper {
  display: none;
}

@media (max-width: 767px) {
  .categories-grid {
    display: none !important;
  }
  
  .categories-carousel-wrapper {
    display: block;
    position: relative;
    padding: 0 15px;
  }
  
  .categories-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 20px;
    padding: 10px 0 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .categories-carousel::-webkit-scrollbar {
    display: none;
  }
  
  .categories-carousel .category-card {
    flex: 0 0 80%;
    max-width: 300px;
    scroll-snap-align: center;
    margin-bottom: 10px;
  }
  
  /* Carousel Indicators */
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s ease;
  }
  
  .carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #00C851;
  }
  
  /* Swipe Hint */
  .swipe-hint {
    text-align: center;
    color: #6c757d;
    font-size: 13px;
    margin-top: 10px;
    animation: fade-in-out 3s infinite;
  }
  
  .swipe-hint i {
    margin-left: 5px;
    animation: swipe-arrow 2s infinite;
  }
  
  @keyframes swipe-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
  }
  
  @keyframes fade-in-out {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  
  .top-categories-section::before {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }
  
  .top-categories-section::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
  }
  
  .top-categories-section .container::before,
  .top-categories-section .container::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .categories-carousel .category-card {
    flex: 0 0 70%;
    max-width: 240px;
  }
  
  .category-card .category-image-wrapper {
    height: 140px;
  }
  
  .category-card .category-name {
    font-size: 14px;
  }
  
  .category-card .category-subtitle {
    font-size: 11px;
  }
  
  .category-card .category-content {
    padding: 12px;
  }
  
  .category-card .category-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .category-btn {
    padding: 8px 12px;
    font-size: 11px;
  }
  
  .category-btn i {
    font-size: 12px;
  }
  
  .trending-badge {
    font-size: 9px;
    padding: 4px 8px;
  }
}


/* Enhanced Search Results & Popular Items */

/* Popular Items in Suggestions */
.suggestion-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 400px;
  overflow-y: auto;
}

.suggestion-items::-webkit-scrollbar {
  width: 6px;
}

.suggestion-items::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.suggestion-items::-webkit-scrollbar-thumb {
  background: #00C851;
  border-radius: 10px;
}

.popular-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.popular-item:hover {
  background: linear-gradient(135deg, #00C851, #007E33);
  border-color: #00C851;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
}

.popular-item-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

.popular-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-item-info {
  flex: 1;
  min-width: 0;
}

.popular-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.popular-item:hover .popular-item-name {
  color: white;
}

.popular-item-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-current {
  font-size: 15px;
  font-weight: 700;
  color: #00C851;
  transition: color 0.3s ease;
}

.popular-item:hover .price-current {
  color: white;
}

.price-old {
  font-size: 13px;
  color: #6c757d;
  text-decoration: line-through;
  transition: color 0.3s ease;
}

.popular-item:hover .price-old {
  color: rgba(255, 255, 255, 0.7);
}

.popular-item-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  color: #00C851;
  font-size: 16px;
  transition: all 0.3s ease;
}

.popular-item:hover .popular-item-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateX(3px);
}

/* Search Results Dropdown */
.search-results-dropdown {
  padding: 15px;
}

.search-results-header {
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-results-header i {
  color: #00C851;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.search-result-item:hover {
  background: white;
  border-color: #00C851;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 200, 81, 0.2);
}

.result-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  position: relative;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-discount {
  position: absolute;
  top: 5px;
  right: 5px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.result-info {
  flex: 1;
  min-width: 0;
}

.result-name {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.result-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.result-whatsapp {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.result-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  color: white;
}

.result-arrow {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00C851;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.search-result-item:hover .result-arrow {
  transform: translateX(3px);
}

/* Loading & Empty States */
.search-loading,
.suggestion-loading,
.no-results,
.no-items,
.search-error {
  text-align: center;
  padding: 40px 20px;
  color: #6c757d;
}

.search-loading i,
.suggestion-loading i {
  font-size: 28px;
  color: #00C851;
  margin-bottom: 10px;
  display: block;
}

.no-results i,
.search-error i,
.no-items i {
  font-size: 48px;
  color: #d1d5db;
  margin-bottom: 15px;
  display: block;
}

.no-results p,
.search-error p,
.no-items p {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 10px 0 5px 0;
}

.no-results small,
.search-error small,
.no-items small {
  font-size: 13px;
  color: #6c757d;
  display: block;
}

/* Responsive Design */
@media (max-width: 767px) {
  .popular-item {
    padding: 10px;
    gap: 10px;
  }
  
  .popular-item-image {
    width: 50px;
    height: 50px;
  }
  
  .popular-item-name {
    font-size: 13px;
  }
  
  .price-current {
    font-size: 14px;
  }
  
  .price-old {
    font-size: 12px;
  }
  
  .search-result-item {
    padding: 10px;
    gap: 10px;
  }
  
  .result-image {
    width: 60px;
    height: 60px;
  }
  
  .result-name {
    font-size: 14px;
  }
  
  .result-whatsapp {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .result-arrow {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
