/*
=============================================================
TemplateMo 571 Hexashop - Refactored & Optimized
https://templatemo.com/tm-571-hexashop
=============================================================

TABLE OF CONTENTS:
1. Imports & Font Declarations
2. CSS Variables
3. Reset & Base Styles
4. Typography
5. Layout & Utilities
6. Header & Navigation
7. Banner & Hero Sections
8. Product Sections (Men, Women, Kids)
9. Filter Components
10. Product Grid & Cards
11. Single Product Page
12. About Us Page
13. Contact Page
14. Footer
15. Preloader
16. Responsive Media Queries
=============================================================
*/


/* =============================================================
   1. IMPORTS & FONT DECLARATIONS
============================================================= */
/* Optimized: Reduced Poppins from 9 to 4 weights, Barlow from 18 to 6 weights */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&display=swap');

@font-face {
  font-family: 'GulfsDisplay';
  src: url('../fonts/GulfsDisplay-Normal.woff2') format('woff2'),
       url('../fonts/GulfsDisplay-Normal.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pincoya';
  src: url('../fonts/LNTH-Pincoya-Black.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

/* =============================================================
   2. CSS VARIABLES
============================================================= */
:root {
  /* Colors */
  --main-color: #eceade;
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #3b141c;
  --secondary-color: #f3961c;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #ccc;
  --text-dark: #2a2a2a;
  --text-light: #a1a1a1;
  --border-color: #e5e7eb;
  
  /* Font sizes */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;
  
  /* Font weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Border radius */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;
  
  /* Spacing */
  --spacing-xs: 5px;
  --spacing-s: 10px;
  --spacing-m: 20px;
  --spacing-l: 30px;
  --spacing-xl: 60px;
  --spacing-xxl: 90px;
  
  /* Size max width */
  --size-max-width: 1300px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}


/* =============================================================
   3. RESET & BASE STYLES
============================================================= */
html, body, div, span, applet, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, 
a, abbr, acronym, address, big, cite, code, 
del, dfn, em, font, img, ins, kbd, q, s, samp, 
small, strike, strong, sub, sup, tt, var, b, u, i, 
center, dl, dt, dd, ol, ul, li, figure, header, 
nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 16px;
  background: url(../images/bg.jpg) center center/cover no-repeat fixed;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > * {
  flex-shrink: 0;
}

#products {
  flex: 1;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none !important;
  transition: var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: var(--font-weight-bold);
}

img {
  max-width: 100%;
  height: auto;
}


/* =============================================================
   4. TYPOGRAPHY
============================================================= */
p {
  font-size: 14px;
  line-height: 25px;
  color: var(--text-dark);
  margin: 0;
}


/* =============================================================
   5. LAYOUT & UTILITIES
============================================================= */
.clearfix::after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}


/* =============================================================
   6. HEADER & NAVIGATION
============================================================= */

/* =============================================================
   7. BANNER & HERO SECTIONS
============================================================= */
.page-heading {
  margin: 0 !important;
  height: 100%;
}

/* Main Banner */
.main-banner {
  border-bottom: 3px dotted #eee;
  padding: 160px 0 var(--spacing-l);
}

.main-banner .left-content .thumb img {
  width: 100%;
  overflow: hidden;
}

.main-banner .left-content .inner-content {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
}

.main-banner .left-content .inner-content h4 {
  color: var(--white-color);
  margin-top: -10px;
  font-size: 52px;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-m);
}

.main-banner .left-content .inner-content span {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-bottom: var(--spacing-l);
}

/* Right Content in Banner */
.main-banner .right-content .right-first-image {
  margin-bottom: 28.5px;
}

.main-banner .right-content .right-first-image .thumb {
  position: relative;
  text-align: center;
}

.main-banner .right-content .right-first-image .thumb img {
  width: 100%;
  overflow: hidden;
}

.main-banner .right-content .right-first-image .thumb .inner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.main-banner .right-content .right-first-image .thumb .inner-content h4 {
  color: var(--white-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 15px;
}

.main-banner .right-content .right-first-image .thumb .inner-content span {
  font-size: 16px;
  color: var(--white-color);
  font-style: italic;
}

.main-banner .right-content .right-first-image .thumb .hover-content {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  bottom: 15px;
  text-align: center;
  background-color: rgba(42, 42, 42, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

.main-banner .right-content .right-first-image .thumb:hover .hover-content {
  opacity: 1;
  visibility: visible;
}

.main-banner .right-content .right-first-image .thumb .hover-content .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.main-banner .right-content .right-first-image .thumb .hover-content h4 {
  color: var(--white-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 15px;
}

.main-banner .right-content .right-first-image .thumb .hover-content p {
  color: var(--white-color);
  padding: 0 var(--spacing-m);
  margin-bottom: var(--spacing-m);
}


/* =============================================================
   8. PRODUCT SECTIONS (MEN, WOMEN, KIDS) - Shared Styles
============================================================= */
#men, #women, #kids {
  padding: var(--spacing-xxl) 0;
  border-bottom: 3px dotted #eee;
}

#men .section-heading,
#women .section-heading,
#kids .section-heading {
  margin-bottom: var(--spacing-xl);
}

/* Product Item Cards */
#men .item,
#women .item,
#kids .item {
  position: relative;
}

#men .item .thumb,
#women .item .thumb,
#kids .item .thumb {
  position: relative;
}

#men .item .down-content,
#women .item .down-content,
#kids .item .down-content {
  padding-top: var(--spacing-l);
  position: relative;
  z-index: 3;
}

#men .item .down-content h4 {
  font-size: 20px;
  color: var(--main-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 8px;
  text-align: center;
}

#women .item .down-content h4,
#kids .item .down-content h4 {
  font-size: 22px;
  color: var(--text-dark);
  font-weight: var(--font-weight-bold);
  margin-bottom: 8px;
}

#men .item .down-content span,
#women .item .down-content span,
#kids .item .down-content span {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 500;
  display: block;
}

#men .item .down-content span {
  text-align: center;
}

/* Star Ratings */
#women .item .down-content ul.stars,
#kids .item .down-content ul.stars {
  position: absolute;
  right: 0;
  top: var(--spacing-l);
}

#women .item .down-content ul.stars li,
#kids .item .down-content ul.stars li {
  display: inline;
  font-size: 13px;
}

/* Hover Effects */
#men .item .thumb .hover-content,
#products .item .thumb .hover-content,
#women .item .thumb .hover-content,
#kids .item .thumb .hover-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  bottom: -60px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

#men .item .thumb:hover .hover-content,
#women .item .thumb:hover .hover-content,
#kids .item .thumb:hover .hover-content {
  bottom: var(--spacing-l);
  opacity: 1;
  visibility: visible;
}

#men .item .thumb .hover-content ul li,
#women .item .thumb .hover-content ul li,
#kids .item .thumb .hover-content ul li {
  display: inline;
  margin: 0 var(--spacing-s);
}

#men .item .thumb .hover-content ul li a,
#women .item .thumb .hover-content ul li a,
#kids .item .thumb .hover-content ul li a {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  color: var(--text-dark);
  background-color: var(--white-color);
  transition: var(--transition-normal);
}


/* Owl Carousel Navigation */
#men .owl-nav,
#women .owl-nav,
#kids .owl-nav {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 40%;
  transform: translateY(-25px);
}

#men .owl-dots,
#women .owl-dots,
#kids .owl-dots {
  display: none;
}

#men .owl-nav .owl-prev,
#women .owl-nav .owl-prev,
#kids .owl-nav .owl-prev {
  position: absolute;
  left: -80px;
  outline: none;
  opacity: 0.75;
  transition: var(--transition-slow);
}

#men .owl-nav .owl-next,
#women .owl-nav .owl-next,
#kids .owl-nav .owl-next {
  position: absolute;
  right: -85px;
  outline: none;
  opacity: 0.75;
  transition: var(--transition-slow);
}

#men .owl-nav .owl-prev:hover,
#women .owl-nav .owl-prev:hover,
#kids .owl-nav .owl-prev:hover,
#men .owl-nav .owl-next:hover,
#women .owl-nav .owl-next:hover,
#kids .owl-nav .owl-next:hover {
  opacity: 1;
}

#men .owl-nav .owl-prev span,
#women .owl-nav .owl-prev span,
#kids .owl-nav .owl-prev span,
#men .owl-nav .owl-next span,
#women .owl-nav .owl-next span,
#kids .owl-nav .owl-next span {
  opacity: 0;
}

#men .owl-nav .owl-prev::before,
#women .owl-nav .owl-prev::before,
#kids .owl-nav .owl-prev::before {
  content: '\f104';
  display: inline-block;
  font-family: 'FontAwesome';
  color: var(--text-dark);
  font-size: 25px;
  font-weight: var(--font-weight-bold);
  width: 50px;
  height: 50px;
  background-color: transparent;
  line-height: 48px;
  border: 1px solid var(--text-dark);
}

#men .owl-nav .owl-next::before,
#women .owl-nav .owl-next::before,
#kids .owl-nav .owl-next::before {
  content: '\f105';
  display: inline-block;
  font-family: 'FontAwesome';
  color: var(--text-dark);
  font-size: 25px;
  font-weight: var(--font-weight-bold);
  width: 50px;
  height: 50px;
  background-color: transparent;
  line-height: 48px;
  border: 1px solid var(--text-dark);
}


/* =============================================================
   9. FILTER COMPONENTS
============================================================= */
#products .section-title {
  font-family: 'GulfsDisplay', sans-serif;
  font-size: 48px;
  color: #972227;
  -webkit-text-stroke: 0.1px rgb(201, 200, 200);
  display: flex;
  align-items: center;
  margin-top: -15px;
}

#products .section-title::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: auto;
  background-color: #F4A261;
  margin-right: 12px;
  padding-top: 35px;
}

/* Simple Filter Container - Accordion Style */
.simple-filter-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--spacing-l);
  border: 0;
  border-radius: var(--border-radius-s);
  overflow: hidden;
  background: var(--white-color);
}

.filter-dropdown {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}

.filter-dropdown:last-child {
  border-bottom: none;
}

.filter-dropdown-btn {
  width: 100%;
  padding: 16px var(--spacing-m);
  background: url('../images/material.png') no-repeat center center;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter-dropdown-btn .filter-label {
  color: #bc3919;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Barlow', sans-serif;
}

.filter-dropdown-btn i {
  color: #6b7280;
  transition: transform var(--transition-normal);
  font-size: 16px;
}

.filter-dropdown-btn.active i {
  transform: rotate(180deg);
}

.filter-dropdown-content {
  max-height: 0;
  overflow: hidden;
  background: var(--white-color);
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 var(--spacing-m);
}

.filter-dropdown-content.show {
  max-height: 400px;
  padding: var(--spacing-s) var(--spacing-m) 16px;
  overflow-y: auto;
}

.filter-dropdown-item {
  padding: var(--spacing-s) 12px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 14px;
  color: #6b7280;
  border-radius: 6px;
  margin-bottom: 4px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-dropdown-item:last-child {
  margin-bottom: 0;
}

.filter-dropdown-item:hover {
  background: #f3f4f6;
  color: #1f2937;
  padding-left: 16px;
}

.filter-dropdown-item.selected {
  background: var(--border-color);
  color: #1f2937;
  font-weight: 500;
}

.filter-dropdown-item.selected::before {
  content: "✓";
  font-weight: bold;
  color: var(--text-dark);
}

/* Custom Scrollbar */
.filter-dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.filter-dropdown-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.filter-dropdown-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.filter-dropdown-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Product Toolbar */
.product-toolbar {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  padding: 24px 32px;
  margin-bottom: 36px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.toolbar-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toolbar-title {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: #141414;
}

.results-count {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-m);
}

/* View Toggle */
.view-toggle {
  display: inline-flex;
  background: #f4f5f7;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--spacing-l);
  padding: 6px;
  gap: 6px;
}

.view-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-circle);
  background: transparent;
  border: none;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-normal);
  cursor: pointer;
}

.view-btn.active,
.view-btn:hover {
  background: #111827;
  color: var(--white-color);
  box-shadow: 0 12px 20px rgba(17, 24, 39, 0.25);
}

/* Sort Dropdown */
.toolbar-sort {
  position: relative;
}

.sort-trigger {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-s);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: var(--spacing-s) 22px;
  background: var(--white-color);
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: #1f2937;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: var(--transition-normal);
  cursor: pointer;
}

.sort-trigger:hover {
  background: #111827;
  color: var(--white-color);
  border-color: #111827;
}

.sort-trigger .label {
  font-weight: 500;
  color: #6b7280;
}

.toolbar-sort .dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  padding: var(--spacing-s) 0;
  min-width: 220px;
}

.toolbar-sort .dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  padding: var(--spacing-s) 18px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.toolbar-sort .dropdown-item.active,
.toolbar-sort .dropdown-item:hover {
  background: rgba(17, 24, 39, 0.06);
  color: #111827;
}


/* =============================================================
   10. PRODUCT GRID & CARDS
============================================================= */
.product-category-banner {
  margin-bottom: 30px;
  margin-top: 30px;
}


#products .section-heading {
  text-align: center;
 
}

#products .item {
  margin-bottom: var(--spacing-l);
  margin-left: -30px;
  margin-right: var(--spacing-l);
}

#products .item .thumb {
  position: relative;
}

#products .item .thumb {
  position: relative;
  overflow: hidden;
}

#products .item .thumb img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s ease-in-out;
}

#products .item .thumb img.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

#products .item .thumb:hover img.main-image {
  opacity: 0;
}

#products .item .thumb:hover img.hover-image {
  opacity: 1;
}

#products .item .down-content {
  padding-top: var(--spacing-m);
  position: relative;
  z-index: 3;
}

#products .item .down-content h4 {
  font-size: 15px;
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Barlow', sans-serif;
}

#products .item .down-content span {
  font-size: 15px;
  color: #c3c3c3;
  font-weight: 500;
  display: block;
  text-align: center;
}

#products .item .thumb .hover-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  bottom: -40px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

#products .item .thumb:hover .hover-content {
  bottom: var(--spacing-s);
  opacity: 1;
  visibility: visible;
}

#products .item .thumb .hover-content ul li {
  display: inline;
  margin: 0 var(--spacing-s);
}

#products .item .thumb .hover-content ul li button {
  width: 55px;
  height: 45px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0px #000000;
  border: 1px solid #000000;
  color: var(--text-dark);
  background-color: var(--white-color);
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
}

#products .item .thumb .hover-content ul li button:hover {
  background-color: #e8e8e8;
  color: var(--white-color);
}

#products i.heart-icon {
  background-image: url('../images/heart-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

#products i.heart-icon.active {
  filter: brightness(0) saturate(100%) invert(28%) sepia(91%) saturate(2817%) hue-rotate(346deg) brightness(95%) contrast(93%);
  transform: scale(1.1);
}

#products i.heart-icon:hover {
  transform: scale(1.2);
}

#products i.shopping-bag-icon {
  background-image: url('../images/shopping-bag-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 16px;
  height: 20px;
}

/* Pagination */
#products .pagination {
  margin-top: var(--spacing-l);
  margin-bottom: 40px;
}

#products .pagination ul {
  text-align: center;
  width: 100%;
}

#products .pagination ul li {
  display: inline;
  margin: 0 var(--spacing-xs);
}

#products .pagination ul li a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--text-dark);
  display: inline-block;
  text-align: center;
  line-height: 44px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition-normal);
}

#products .pagination ul li a:hover,
#products .pagination ul li.active a {
  background-color: var(--text-dark);
  color: var(--white-color);
}


/* =============================================================
   11. SINGLE PRODUCT PAGE
============================================================= */
#product {
  margin-top: 80px;
}

#product .left-images img {
  width: 100%;
  overflow: hidden;
  margin-bottom: var(--spacing-l);
}

#product .right-content {
  position: relative;
  z-index: 3;
  background-color: var(--white-color);
}

#product .right-content h4 {
  font-size: 22px;
  color: var(--text-dark);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0;
}

#product .right-content span.price {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 500;
  display: block;
  margin-top: var(--spacing-xs);
  border-bottom: 1px solid #eee;
  padding-bottom: var(--spacing-m);
}

#product .right-content ul.stars {
  position: absolute;
  right: 0;
  top: 0;
}

#product .right-content ul.stars li {
  display: inline;
  font-size: 13px;
}

#product .right-content span {
  font-size: 14px;
  color: #aaaaaa;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

#product .right-content .quote {
  margin-top: 25px;
}

#product .right-content .quote i {
  float: left;
  font-size: 32px;
  margin-right: 15px;
  margin-top: var(--spacing-s);
}

#product .right-content .quote p {
  font-style: italic;
  color: var(--text-dark);
  font-weight: 500;
}

#product .right-content p {
  font-size: 14px;
  color: #aaaaaa;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

/* Quantity Controls */
.quantity-content {
  margin-top: var(--spacing-l);
  padding-top: var(--spacing-l);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  width: 100%;
  padding-bottom: var(--spacing-l);
  margin-bottom: var(--spacing-l);
}

.quantity-content .left-content {
  float: left;
  margin-right: var(--spacing-l);
}

.quantity-content .right-content {
  text-align: right;
}

.quantity-content .left-content h6 {
  padding-top: 7px;
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: #aaa;
  position: relative;
  z-index: 11;
}

.total h4 {
  float: left;
  font-size: 20px;
  margin-top: var(--spacing-s);
  color: #aaa !important;
}

.total .main-border-button {
  text-align: right;
}

.total .main-border-button a {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.total .main-border-button a:hover {
  color: var(--white-color);
  background-color: var(--text-dark);
}

/* Quantity Buttons */
.quantity {
  display: inline-block;
}

.quantity .input-text.qty {
  width: 35px;
  height: 39px;
  padding: 0 var(--spacing-xs);
  text-align: center;
  background-color: transparent;
  border: 1px solid #efefef;
}

.quantity.buttons_added {
  text-align: left;
  position: relative;
  white-space: nowrap;
  vertical-align: top;
}

.quantity.buttons_added input {
  display: inline-block;
  margin: 0;
  vertical-align: top;
  box-shadow: none;
}

.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
  padding: 7px var(--spacing-s) 8px;
  height: 39px;
  background-color: var(--white-color);
  border: 1px solid #efefef;
  cursor: pointer;
  transition: var(--transition-normal);
}

.quantity.buttons_added .minus {
  border-right: 0;
}

.quantity.buttons_added .plus {
  border-left: 0;
}

.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
  background: #eeeeee;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
  margin: 0;
}

.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
  outline: none;
}


/* =============================================================
   12. ABOUT US PAGE
============================================================= */
.about-page-heading {
  margin-top: 160px;
  margin-bottom: var(--spacing-l);
  background: url(../images/about-us-page-heading.jpg) center center/cover no-repeat;
}

.about-us {
  margin-top: 80px;
}

.about-us .left-image img {
  width: 100%;
  overflow: hidden;
}

.about-us .right-content {
  margin-left: var(--spacing-l);
}

.about-us .right-content h4 {
  font-size: 34px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
}

.about-us .right-content span {
  font-size: 14px;
  color: #aaaaaa;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

.about-us .right-content .quote {
  margin-top: 25px;
}

.about-us .right-content .quote i {
  float: left;
  font-size: 32px;
  margin-right: 15px;
  margin-top: var(--spacing-s);
}

.about-us .right-content .quote p {
  font-style: italic;
  color: var(--text-dark);
  font-weight: 500;
}

.about-us .right-content p {
  font-size: 14px;
  color: #aaaaaa;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

.about-us .right-content ul {
  border-top: 3px dotted #eee;
  margin-top: var(--spacing-l);
  padding-top: var(--spacing-l);
}

.about-us .right-content ul li {
  display: inline-block;
  margin-right: var(--spacing-xs);
}

.about-us .right-content ul li a {
  width: 44px;
  height: 44px;
  background-color: var(--text-dark);
  color: var(--white-color);
  display: inline-block;
  text-align: center;
  line-height: 44px;
  border-radius: var(--border-radius-circle);
  transition: var(--transition-slow);
}

.about-us .right-content ul li a:hover {
  background-color: #eee;
  color: var(--text-dark);
}

/* Our Team Section */
.our-team {
  margin-top: 100px;
  padding: var(--spacing-xxl) 0;
  border-top: 3px dotted #eee;
}

.our-team .section-heading {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.our-team .section-heading h2 {
  margin-bottom: var(--spacing-s);
}

.our-team .team-item .thumb {
  position: relative;
}

.our-team .team-item .thumb img {
  width: 100%;
  overflow: hidden;
}

.our-team .team-item .thumb .hover-effect {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  text-align: center;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.our-team .team-item .thumb:hover .hover-effect {
  opacity: 1;
  visibility: visible;
}

.our-team .team-item .thumb .hover-effect .inner-content {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 100%;
  transform: translateY(-22px);
}

.our-team .team-item .thumb .hover-effect .inner-content ul li {
  display: inline-block;
  margin: 0 var(--spacing-xs);
}

.our-team .team-item .thumb .hover-effect .inner-content ul li a {
  width: 44px;
  height: 44px;
  background-color: var(--white-color);
  color: var(--text-dark);
  display: inline-block;
  text-align: center;
  line-height: 44px;
  border-radius: var(--border-radius-circle);
  transition: var(--transition-normal);
}

.our-team .team-item .thumb .hover-effect .inner-content ul li a:hover {
  background-color: var(--text-dark);
  color: var(--white-color);
}

.our-team .team-item .down-content {
  text-align: center;
  padding-top: 25px;
}

.our-team .team-item .down-content h4 {
  font-size: 24px;
  color: var(--text-dark);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-xs);
}

.our-team .team-item .down-content span {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  display: block;
  font-style: italic;
}

/* Our Services Section */
.our-services {
  padding: var(--spacing-xxl) 0;
  border-top: 3px dotted #eee;
  border-bottom: 3px dotted #eee;
}

.our-services .section-heading {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.our-services .section-heading h2 {
  margin-bottom: var(--spacing-s);
}

.our-services .service-item {
  padding: var(--spacing-l);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
  text-align: center;
}

.our-services .service-item img {
  width: 100%;
  overflow: hidden;
}

.our-services .service-item h4 {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-m);
}

.our-services .service-item p {
  margin-bottom: 25px;
}


/* =============================================================
   13. CONTACT PAGE
============================================================= */
.contact-us {
  margin-top: var(--spacing-xxl);
  border-bottom: 3px dotted #eee;
  padding-bottom: var(--spacing-xxl);
}

.contact-us .section-heading {
  margin-bottom: 40px;
}

.contact-us #map {
  margin-right: var(--spacing-l);
}

.contact-us form input {
  width: 100%;
  height: 44px;
  line-height: 44px;
  padding: 0 15px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: #aaa;
  border-radius: 0;
  border: 1px solid #7a7a7a;
  box-shadow: none;
  transition: var(--transition-normal);
}

.contact-us form input:focus {
  border-color: var(--text-dark);
  border-radius: 0;
  outline: none;
}

.contact-us form textarea {
  width: 100%;
  height: 140px;
  min-height: 120px;
  max-height: 200px;
  margin-top: var(--spacing-l);
  margin-bottom: 25px;
  line-height: 44px;
  padding: 0 15px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: #aaa;
  border-radius: 0;
  border: 1px solid #7a7a7a;
  box-shadow: none;
  transition: var(--transition-normal);
}

.contact-us form textarea:focus {
  border-color: var(--text-dark);
  border-radius: 0;
  outline: none;
}

.contact-us form button {
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  background-color: var(--text-dark);
  box-shadow: none;
  border: 1px solid transparent;
  color: var(--white-color);
  transition: var(--transition-normal);
  cursor: pointer;
}

.contact-us form button:hover {
  background-color: var(--white-color);
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
}


/* =============================================================
   14. FOOTER
============================================================= */
footer {
  margin-top: 100px;
  padding: var(--spacing-xl) 0 var(--spacing-l);
  background-color: var(--text-dark);
}

footer .logo {
  margin-bottom: var(--spacing-m);
}

footer ul li {
  display: block;
  margin-bottom: var(--spacing-s);
}

footer ul li a {
  font-size: 14px;
  color: var(--white-color);
  transition: var(--transition-normal);
}

footer ul li a:hover {
  color: #aaa;
}

footer h4 {
  letter-spacing: 0.5px;
  font-size: 16px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-m);
}

footer .under-footer {
  margin-top: var(--spacing-l);
  padding-top: var(--spacing-l);
  text-align: center;
  border-top: 1px solid rgba(250, 250, 250, 0.3);
}

footer .under-footer ul {
  margin-top: var(--spacing-m);
}

footer .under-footer ul li {
  display: inline-block;
  margin: 0 var(--spacing-s);
}

footer .under-footer ul li a {
  font-size: 22px;
}

footer .under-footer p {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 300;
}

footer .under-footer a {
  color: #cff;
}

footer .under-footer a:hover {
  color: #c66;
}


/* =============================================================
   15. PRELOADER
============================================================= */
#preloader {
  overflow: hidden;
  background-color: var(--text-dark);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 99999;
  color: var(--white-color);
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: var(--white-color);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/* =============================================================
   16. RESPONSIVE MEDIA QUERIES
============================================================= */

/* Large Screens */
@media (max-width: 1200px) {
  .main-banner .right-content .right-first-image .thumb .hover-content p {
    display: none;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .main-banner .right-content .right-first-image .thumb .hover-content p {
    display: block;
  }
  
  .main-banner .left-content {
    margin-bottom: var(--spacing-l);
  }
  
  .subscribe input {
    margin-bottom: 15px;
  }
  
  .subscribe form {
    text-align: center;
    margin-bottom: var(--spacing-l);
  }
  
  .about-us .right-content {
    margin-left: 0;
    margin-top: var(--spacing-l);
  }
  
  .our-team .team-item,
  .our-services .service-item {
    margin-bottom: var(--spacing-l);
  }
  
  .contact-us #map {
    margin-right: 0;
    margin-bottom: var(--spacing-l);
  }
  
  .simple-filter-container {
    margin-bottom: var(--spacing-m);
  }
}

/* Mobile - Header Navigation */
@media (max-width: 768px) {
  .header-top {
    padding: 15px 0 !important;
  }
  
  .nav-logo img {
    width: 120px !important;
    height: 48px !important;
  }
  
  .nav-menu {
    flex-direction: column !important;
    gap: 0 !important;
  }
  
  .nav-link {
    padding: 15px var(--spacing-m);
    border-bottom: 1px solid #2c3e50;
    text-align: center;
  }
  
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #2c3e50;
    display: none;
  }
  
  .nav-item:hover .submenu {
    display: block;
  }
  
  .submenu-link {
    color: #ecf0f1;
    padding-left: 40px;
    text-align: left;
  }
  
  /* Banner Adjustments */
  .main-banner .left-content .thumb .inner-content {
    left: 50%;
    top: 47.5%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  /* Footer */
  .subscribe form button {
    width: 100%;
  }
  
  footer {
    text-align: center;
  }
  
  footer h4 {
    margin-top: var(--spacing-l);
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .nav-logo img {
    width: 100px !important;
    height: 40px !important;
  }
  
  .nav-link {
    font-size: 13px;
    padding: 12px 15px;
  }
  
  .page-heading .inner-content h2 {
    font-size: 36px;
  }
  
  .toolbar-title {
    font-size: 20px;
  }
  
  .product-toolbar {
    padding: 16px var(--spacing-m);
  }
}


/* =============================================================
   ADDITIONAL SECTIONS (Explore, Social, Subscribe)
============================================================= */

/* Explore Section */
#explore {
  padding: var(--spacing-xxl) 0;
  border-bottom: 3px dotted #eee;
}

#explore .left-content {
  margin-right: var(--spacing-l);
}

#explore .left-content h2 {
  font-size: 34px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
}

#explore .left-content span {
  font-size: 14px;
  color: #aaaaaa;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

#explore .left-content .quote {
  margin-top: 25px;
}

#explore .left-content .quote i {
  float: left;
  font-size: 32px;
  margin-right: 15px;
  margin-top: var(--spacing-s);
}

#explore .left-content .quote p {
  font-style: italic;
  color: var(--text-dark);
  font-weight: 500;
}

#explore .left-content p {
  font-size: 14px;
  color: #aaaaaa;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

#explore .left-content .main-border-button a {
  color: var(--text-dark);
  border-color: var(--text-dark);
  margin-top: 35px;
}

#explore .left-content .main-border-button a:hover {
  background-color: var(--text-dark);
  color: var(--white-color);
}

#explore img {
  width: 100%;
  overflow: hidden;
}

#explore .leather {
  margin-bottom: var(--spacing-l);
}

#explore .first-image {
  margin-bottom: var(--spacing-l);
}

#explore .leather,
#explore .types {
  min-height: 255px;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
}

#explore .leather h4,
#explore .types h4 {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  padding-top: var(--spacing-xxl);
  margin-bottom: var(--spacing-xs);
}

#explore .leather span,
#explore .types span {
  font-size: 14px;
  font-style: italic;
  color: #aaa;
  font-weight: 500;
}

/* Social Section */
#social {
  margin-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-xxl);
  border-bottom: 3px dotted #eee;
}

#social .col-2 {
  padding-left: 0;
  padding-right: 0;
}

#social .images {
  margin-top: var(--spacing-xl);
  padding-left: 15px;
  padding-right: 15px;
}

#social .thumb {
  position: relative;
}

#social .thumb .icon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

#social .thumb:hover .icon {
  opacity: 1;
  visibility: visible;
}

#social .thumb .icon h6 {
  color: var(--white-color);
  position: absolute;
  font-size: 14px;
  bottom: 40px;
  font-weight: 400;
  left: 15px;
}

#social .thumb .icon i {
  color: var(--white-color);
  position: absolute;
  bottom: 15px;
  left: 15px;
}

#social .thumb img {
  width: 100%;
  overflow: hidden;
}

/* Subscribe Section */
.subscribe {
  margin-top: var(--spacing-xxl);
}

.subscribe .section-heading {
  margin-bottom: var(--spacing-l);
}

.subscribe .section-heading h2 {
  line-height: 55px;
}

.subscribe form input {
  width: 100%;
  height: 44px;
  line-height: 44px;
  padding: 0 15px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: #aaa;
  border-radius: 0;
  border: 1px solid #7a7a7a;
  box-shadow: none;
  transition: var(--transition-normal);
}

.subscribe form input:focus {
  border-color: var(--text-dark);
  border-radius: 0;
  outline: none;
}

.subscribe form button {
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  background-color: var(--text-dark);
  box-shadow: none;
  border: 1px solid transparent;
  color: var(--white-color);
  transition: var(--transition-normal);
  cursor: pointer;
}

.subscribe form button:hover {
  background-color: var(--white-color);
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
}

.subscribe ul li {
  margin-bottom: var(--spacing-l);
  display: block;
}

.subscribe ul li {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
}

.subscribe ul li span,
.subscribe ul li span a {
  font-size: 14px;
  font-weight: 400;
  color: #aaa;
}

.subscribe ul li span a:hover {
  color: var(--text-dark);
}

/* Responsive - Explore Section */
@media (max-width: 992px) {
  #explore .left-content {
    margin-bottom: var(--spacing-l);
  }
  
  #explore .right-content .types {
    margin-top: var(--spacing-l);
  }
}

/* Add to cart button added state */
#products .add-to-cart.added {
    background-color: #d5b948 !important;
    border-color: #d5b948 !important;
}


/* Fix: Prevent heart icon from shifting when clicking cart button */
#products .item .thumb .hover-content ul li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

#products .item .thumb .hover-content ul li button {
  pointer-events: auto;
  isolation: isolate;
}

#products .item .thumb .hover-content ul li button i {
  pointer-events: none;
  display: block;
}


/* ===== CART MODAL STYLES ===== */
.cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    text-align: center;
    position: relative;
}

.cart-header h3 {
    color: #f39c12;
    margin: 0;
    font-size: 18px;
}

.cart-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #f39c12;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-close:hover {
    color: #e67e22;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background-image: url("../images/material.png");
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    gap: 30px;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-family: "Barlow", sans-serif;
    color: black;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.3;
}

.cart-item-price {
    color: #f39c12;
    font-weight: 600;
    font-size: 14px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: black;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #f39c12;
}

.quantity-input {
    width: 40px;
    height: 25px;
    border: 1px solid #ddd;
    background: black;
    color: white;
    text-align: center;
    border-radius: 3px;
    font-size: 12px;
}

.remove-item {
    background: none;
    border: none;
    color: black;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px;
}

.remove-item:hover {
    color: #e74c3c;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
    background: black;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.cart-total span:last-child {
    color: #f39c12;
    font-weight: 600;
    font-size: 18px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-btn {
    background: white;
    color: black;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    background: #f39c12;
    transform: translateY(-2px);
}

.continue-shopping {
    background: transparent;
    color: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    color: #f39c12;
    border-color: #f39c12;
    transform: translateY(-2px);
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: black;
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    color: black;
}

.cart-empty p {
    margin-bottom: 20px;
}

