/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
  --color: #ecbc17;
  /* --primary-color: #f3815f; */
  --primary-color: #69916c;
  --primary-color-light: #a2bba4;
  --primary-color-dark: #4f7e52;
  --secondary-color: #3e445a;
  --text-color: #253d4e;
  --text-light: #7e7e7e;
  --body-color: #ffffff;
  --white: #ffffff;
  --light-bg: #fcece4;
  --light-bg: #e3f0e8;
  --light-bg-dark: #def9ec;
  --border-color: #ececec;
  --bg-light-gray: #f8f8ff;
  --success-color: #81b13d;
  --warning-color: #f7e12c;
  --warning-color: #ffb300;
  --error-color: #ff6868;
  --box-shadow: 0 0px 5px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --main-header-height: 110px;
  --nav-height: 55px;
  /* border raduis */
  --raduis-full: 50%;
  --raduis-Chips: 9999px;

  /* none */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;

  /* Simple */
  /* --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px; */

  /* Normal */
  /* --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px; */

  /* Big */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --section-padding: 70px 0;

  /* Font Size */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-md-lg: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 1.8rem;
  --font-size-xxxl: 2.5rem;
  --font-size-md-sm: 0.9rem;
  --font-size-lg-sm: 1.2rem;

}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1440px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
}

a,
button,
img,
input,
span,
h4 {
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

/*--------------------------------------------------------------
# Reset & Base
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

figcaption,
.visually-hidden {
  display: none;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  border-radius: var(--radius-sm);
  background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--success-color);
}

/* Breadcrumb Styling */
.breadcrumb-section {
  padding: 15px 0;
  margin-bottom: 40px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  font-size: var(--font-size-md-sm);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 10px;
  color: #aaa;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #3bb77e;
}

.breadcrumb .active {
  color: #3bb77e;
}


/* Header Section */
.section-header {
  text-align: center;
  padding: 50px 15px;
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}

.section-header h1 {
  font-size: var(--font-size-xxxl);
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.section-header .lead {
  font-size: var(--font-size-lg-sm);
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-color);
}


body {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--body-color);
  direction: rtl;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: 'Cairo', sans-serif;
  font-size: var(--font-size-md);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}


.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.section-title {
  text-align: start;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  width: fit-content;
}

.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -155%;
  transform: translate(50%, -50%);
  width: 100%;
  height: 2px;
  background-color: var(--primary-color-light);
}

@media (max-width: 769px) {
  .section-title {
    width: 100%;
    text-align: center;
  }

  .section-title::after {
    display: none;
  }
}

/*--------------------------------------------------------------
# Header Styles
--------------------------------------------------------------*/
.site-header {
  top: 0;
  z-index: 1000;
}

.top-header-container {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-light-gray);
}

.top-header {
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info a {
  margin-left: 20px;
  font-size: var(--font-size-sm);
  color: var(--text-light);
}

.contact-info a i {
  color: var(--primary-color);
}

.contact-info .social-media .social-links {
  gap: 0;
}

.top-nav ul {
  display: flex;
}

.top-nav ul li {
  margin-right: 15px;
}

.top-nav ul li a {
  font-size: var(--font-size-sm);
  color: var(--text-light);
}

.top-nav ul li a:hover {
  color: var(--primary-color);
}

.main-header-container {
  background-color: var(--white);
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 150px;
}

.search-bar {
  flex: 1;
  max-width: 50%;
  margin: 0 30px;
}

.search-bar form {
  position: relative;
  display: flex;
  align-items: center;
}

.search-bar input {
  width: 100%;
  padding: 8px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  outline: none;
  transition: var(--transition);
}

.search-bar input:focus {
  border-color: var(--primary-color);
}

.search-bar button {
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: var(--primary-color);
  color: var(--white);
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar button:hover {
  background-color: var(--primary-color-dark);
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-actions a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
  position: relative;
}

.header-actions .account-link {
  margin-right: 0px;
}

.header-actions a i {
  font-size: 1.375rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.header-actions a span {
  font-size: var(--font-size-sm);
}

.header-actions a .count {
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: var(--font-size-xs);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-actions a:hover i {
  color: var(--primary-color);
}

.main-nav-container {
  border-bottom: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-light-gray);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--nav-height);
  gap: 10px;
}

.main-nav ul li {}

.main-nav ul li a {
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  display: block;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--primary-color-dark);
}



.main-nav .btn {
  color: var(--primary-color);
  display: none;
}

.main-nav .btn i {
  color: var(--error-color);
  margin: 0 5px;
}

@media (min-width: 769px) {
  .main-nav .btn {
    display: block;
  }
}

.menu-toggle {
  display: none;
  background-color: var(--primary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-lg);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  overflow: hidden;
  margin: 0 var(--nav-height);
  margin-top: var(--nav-height);
  border-radius: var(--radius-xl);
  /* background: linear-gradient(0deg, rgb(255 255 255) 0%, rgb(240 240 240) 80%); */
  background-color: var(--bg-light-gray);
}

.slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 25px;
}

.hero-section .swiper {
  /* z-index: -1; */
}

.hero-swiper-wrapper {
  position: relative;
}

.hero-swiper-slide {
  position: relative;
  padding: 100px 50px;
  z-index: -1;
}

.swiper-arrows {
  width: 50px !important;
  height: 50px !important;
  border-radius: var(--radius-lg) !important;
  background-color: rgba(0, 0, 0, 0.050) !important;
  color: #505050 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.563rem !important;
}

.swiper-pagination-bullet {
  width: 17px !important;
  height: 17px !important;
  transition: .3s !important;
  background-color: var(--primary-color-dark) !important;
  border-radius: var(--radius-sm) !important;
}
.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
    pointer-events: auto !important;
}
.slide {
  /* position: relative; */
  z-index: 1;
}

.slide-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  /* opacity: .5; */
  /* display: none; */
}

.slide .content {
  max-width: 700px;
  flex: 1;
  padding-left: 50px;
  /* background-color: var(--light-bg); */
  border-radius: var(--radius-xl);
  padding: 25px;
  position: relative;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}

/* .slide .content::before,
.slide .content::after {
  content: '';
  position: absolute;

}

.slide .content::before {
  top: -25px;
  right: -25px;
  background-color: rgba(242, 252, 228, 0.50);
  width: 100%;
  height: 100%;
  border-radius: 25px;
  z-index: -1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.slide .content::after {
  bottom: -20px;
  left: -20px;
  background-color: rgb(242, 252, 228, 0.75);
  width: 70px;
  height: 70px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 50%;
  z-index: -1;
} */

.slide .content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.slide .content p {
  font-size: var(--font-size-md-lg);
  margin-bottom: 30px;
  color: var(--text-light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5rem;
  height: calc(1.5rem * 2);
}

.showoff-container {
  overflow: hidden;
}

.slide .content h1 .showoff-span {
  transform: translateY(-150%);
  transition-delay: .8s;
}

.showoff-span {
  display: block;
  transform: translateY(100%);
  transition: transform 1s ease-out;
}

.hero-swiper-slide.swiper-slide-active .showoff-span {
  transform: translateY(0);
}

.hero-swiper-slide.swiper-slide-active .content h1 .showoff-span {
  transform: translateY(0);
}

.hero-swiper-slide .btn {
  scale: 0;
  transition: scale 1s;
}

.hero-swiper-slide.swiper-slide-active .btn {
  scale: 1;
}

.slide .image {
  /* flex: 1; */
  height: 400px;
  position: relative;
  max-width: 450px;
}

/* .slide .image::before {
  content: '1';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 300px;
  border-radius: 50%;
  z-index: 0;
} */

.slide .image figure {
  width: 100%;
  height: 100%;
  padding: 10px;
}


.slide .image .main-image {
  border-radius: 25px;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
  transform: translateX(-125%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 2s ease-out;
}

.slide .image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('../image/decor-bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 115%;
  height: 115%;
}

@media (min-width: 768px) {}

.hero-swiper-slide.swiper-slide-active .main-image {
  transform: translateX(0);
  opacity: 1;
}

.slide .image .sec-image {
  position: absolute;
  width: 170px;
  height: 170px;
  top: -50px;
  left: -50px;
  z-index: 1;
  object-position: center;
  object-fit: contain;
  border-radius: 25px;
  transform: translateY(-150%);
  transition: transform 1s .8s ease-out;
}

.hero-swiper-slide.swiper-slide-active .sec-image {
  transform: translateX(0);
}

/*--------------------------------------------------------------
# Categories Section
--------------------------------------------------------------*/
.categories-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.categories-swiper {
  padding: 10px 0;
  /* border: 1px solid var(--border-color); */
}

.category-card {
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  display: block;
  border: 1px solid var(--body-color);
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  height: 250px;
}

.category-card:hover {
  transform: translateY(-10px);
}

.categories-section .categories-image {
  width: 125px;
  height: 125px;
}

.categories-section .categories-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card .category-info {
  text-align: start;
}

.category-card h3 {
  margin-top: 15px;
  padding-top: 15px;
  font-size: var(--font-size-md);
  color: var(--text-light);
  font-weight: 600;
}

.category-card p {
  font-size: var(--font-size-lg);
  max-width: 150px;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Grid Section
--------------------------------------------------------------*/
/* .card-grid.large::after {
  content: "HOMEMADE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #e2e8f0;
  opacity: 0.5;
  z-index: 1;
} */


.big-grid-section {
  padding: var(--section-padding);
}

.grid-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  grid-template-areas:
    "large small1"
    "large small2";
  grid-auto-rows: minmax(250px, 300px);
}

.big-grid-section .card-grid {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  flex-direction: column;
}

.big-grid-section .card-grid.large {
  grid-area: large;
  background-color: #f7f7f7;
  position: relative;
}


.big-grid-section .card-grid:nth-child(2) {
  grid-area: small1;
  background-color: #e6f0fa;
}

.big-grid-section .card-grid:nth-child(3) {
  grid-area: small2;
  background-color: #faebdc;
}

.big-grid-section .card-header {
  position: absolute;
  right: 20px;
  top: 20px;
  margin-bottom: 1rem;
  z-index: 2;
}

.big-grid-section .card-category {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.big-grid-section .card-badge {
  color: var(--text-light);
  font-weight: bold;
  font-size: var(--font-size-md);
}

.card-grid.large .card-image {
  height: 80%;
}

.big-grid-section .card-image {
  width: fit-content;
  height: 100%;
}

.big-grid-section .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.big-grid-section .card-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.big-grid-section .card-content img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .big-grid-section .grid-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "large"
      "small1"
      "small2";
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .big-grid-section .card-grid {
    padding: 1.5rem;
  }

  .big-grid-section .card-title {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
.banner-section {
  padding: 50px 0;
}

.banner {
  background-color: var(--primary-color);
  background-image: linear-gradient(to right, var(--primary-color), var(--primary-color-dark));
  border-radius: var(--radius-md);
  padding: 60px;
  text-align: center;
  color: var(--white);
}

.banner h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner p {
  font-size: var(--font-size-md-lg);
  margin-bottom: 30px;
  opacity: 0.9;
}

.banner .btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.banner .btn-primary:hover {
  background-color: transparent;
  color: var(--white);
}

/*--------------------------------------------------------------
# singel category
--------------------------------------------------------------*/
.singel-category-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-category {
  /* background-image: url('../image/logo.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; */
  min-width: 280px;
  height: 500px;
  background-color: var(--bg-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-xxxl);
}

.about-category h3 {
  rotate: -45deg;
  background-color: rgba(255, 255, 255, 0.507);
  padding: 10px 20px;
  border-radius: var(--radius-lg);
}

@media (max-width: 600px) {
  .singel-category-container {
    display: block;
  }

  .about-category {
    display: none;
  }
}

.singel-category-container .featured-swiper {
  padding-bottom: 50px;
}

.singel-category-container .featured-swiper .swiper-pagination {
  bottom: 0px;
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog-section {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

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

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

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

.blog-card .blog-content {
  padding: 25px;
}

.blog-card .blog-meta {
  display: flex;
  font-size: var(--font-size-sm);
  color: var(--text-light);
  margin-bottom: 15px;
}

.blog-card .blog-meta span {
  margin-left: 15px;
}

.blog-card .blog-meta i {
  margin-left: 5px;
  color: var(--primary-color);
}

.blog-card .blog-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-card .blog-excerpt {
  color: var(--text-light);
  margin-bottom: 20px;
}

.blog-card .read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-block;
}

.blog-card .read-more i {
  margin-right: 5px;
  transition: var(--transition);
}

.blog-card .read-more:hover i {
  transform: translateX(-5px);
}

/*--------------------------------------------------------------
# Newsletter Section
--------------------------------------------------------------*/
.newsletter-section {
  padding: 50px 0;
}

.newsletter-box {
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsletter-box .content {
  max-width: 50%;
}

.newsletter-box h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.newsletter-box p {
  color: var(--text-light);
}

.newsletter-form {
  flex: 1;
  max-width: 500px;
}

.newsletter-form .form-group {
  display: flex;
  margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 5px 0 0 5px;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--primary-color);
}

.newsletter-form .btn {
  border-radius: 0 5px 5px 0;
  padding: 0 25px;
}

.newsletter-form .form-check {
  display: flex;
  align-items: center;
  font-size: var(--font-size-sm);
  color: var(--text-light);
}

.newsletter-form .form-check input {
  margin-left: 10px;
}

.newsletter-form .form-check a {
  color: var(--primary-color);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

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

.feature {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature:hover {
  box-shadow: var(--box-shadow);
}

.feature .icon {
  font-size: var(--font-size-xxxl);
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 15px;
}

.feature p {
  color: var(--text-light);
}


/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 15px;
}

.featured-products {
  padding: var(--section-padding);
  /* background-color: var(--white); */
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  padding: 20px;
  background-color: var(--bg-light-gray);
  /* border: 1px solid var(--border-color); */
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.product-image {
  border-radius: var(--radius-md);
  width: 100%;
  height: 200px;
  transition: var(--transition);
  /* later */
  padding: 10px;
  /* background-color: white; */
  object-fit: contain;
}

/* .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
} */

.product-card:hover .product-image {
  transform: scale(1.05);
}


.product-details {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.product-category {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  margin-bottom: 5px;
  border: 1px solid var(--border-color);
  width: fit-content;
  padding: 2px 5px;
  border-radius: 1px var(--radius-sm);
}

.product-name {
  font-size: var(--font-size-md);
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--secondary-color);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 225px;
}

/* .product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  } */

.stars {
  color: var(--warning-color);
  font-size: var(--font-size-xs);
}

/* .rating-text {
  color: var(--text-light);
  font-size: 0.85rem;
} */

.product-price {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 5px;
}

.current-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color-dark);
}

.old-price {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: var(--font-size-xs);
}

.discount-badge {
  background: var(--error-color);
  color: var(--white);
  padding: 3px 8px;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.add-to-cart-btn {
  color: var(--secondary-color);
  border: none;
  padding: 3px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 1px solid var(--primary-color);
}

.add-to-cart-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.add-to-cart-btn:disabled {
  background: var(--border-color);
  color: var(--text-light);
  cursor: not-allowed;
}

.view-product-btn {
  background: var(--border-color);
  color: var(--text-color);
  border: none;
  padding: 5px 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.view-product-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.empty-favorites {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow);
}

.empty-icon {
  font-size: 4rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.empty-text {
  color: var(--text-light);
  margin-bottom: 30px;
}

.shop-now-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.shop-now-btn:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
}


.product-card .badges {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.product-card .badge {
  display: block;
  margin-bottom: 5px;
  padding: 5px 10px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  width: fit-content;
}

.product-card .badge.new {
  background-color: var(--success-color);
}

.product-card .badge.discount {
  background-color: var(--warning-color);
}

.product-card .badge.hot {
  background-color: var(--error-color);
}

.product-card .badge.out-of-stock {
  background: var(--error-color);
  opacity: .8;
  text-decoration: line-through;
}

.view-more {
  text-align: center;
  margin-top: 50px;
}

/* Singel Product */
/* Additional styles specific to product page */
.single-product-section {
  padding: var(--section-padding);
}

.single-product-section .product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.single-product-section .product-gallery {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.single-product-section .thumbnails {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.single-product-section .thumbnail {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.single-product-section .thumbnail.active {
  border-color: var(--primary-color);
}

.single-product-section .thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.single-product-section .main-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.single-product-section .main-image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: center;
}

.single-product-section .product-info {
  padding: 30px;
  flex: 1;
  min-width: 300px;
}

.single-product-section .product-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.single-product-section .product-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.single-product-section .product-meta span {
  margin-left: 20px;
  color: var(--text-light);
}

.single-product-section .product-meta span i {
  color: var(--primary-color);
  margin-left: 5px;
}

.single-product-section .product-price {
  margin-bottom: 20px;
}

.single-product-section .current-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 0 !important;
}

.single-product-section .old-price {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 10px;
}

.single-product-section .discount-badge {
  display: inline-block;
  background-color: var(--warning-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-right: 10px;
}

.single-product-section .product-description {
  margin-bottom: 30px;
  color: var(--text-light);
  line-height: 1.8;
}

.single-product-section .custom-size {
  display: none;
}

.single-product-section .product-colors {
  margin-bottom: 20px;
}

.single-product-section .colors-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.single-product-section .color-options {
  display: flex;
  gap: 10px;
}

.single-product-section .color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.single-product-section .color-option.active {
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.single-product-section .product-size label {
  font-weight: bold;
}

.single-product-section .product-size .size-options {
  margin-top: 10px;
}

.single-product-section .product-size .size-options label {
  margin: 5px 10px;
}

.single-product-section .product-size .predefined-sizes {
  margin: 10px 0;
}

.single-product-section .product-size button {
  padding: 0 10px;
  border: 1px solid var(--primary-color-light);
  border-radius: var(--radius-sm);
}

.single-product-section .product-size button.active {
  color: var(--white);
  background-color: var(--primary-color-light);

}

.single-product-section .black {
  background-color: #000;
}

.single-product-section .white {
  background-color: #fff;
  border: 1px solid #ddd;
}

.single-product-section .blue {
  background-color: #0066cc;
}

.single-product-section .red {
  background-color: #cc0000;
}

.single-product-section .product-quantity {
  margin-bottom: 30px;
}

.single-product-section .quantity-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.single-product-section .quantity-input {
  display: flex;
  align-items: center;
  width: fit-content;
}

.single-product-section .quantity-input button {
  width: 40px;
  height: 40px;
  background-color: var(--light-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-product-section .quantity-input input {
  width: 60px;
  height: 40px;
  border: 1px solid var(--border-color);
  text-align: center;
  margin: 0 10px;
  font-weight: 600;
}

.single-product-section .product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.single-product-section .add-to-cart-btn {
  flex: 1;
  color: var(--white);
}

.single-product-section .add-to-cart-btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.single-product-section .wishlist-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.single-product-section .wishlist-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.single-product-section .product-details {
  margin-top: 50px;
}

.single-product-section .shipping-info {
  margin-bottom: 20px;
  padding: 15px;
  background-color: var(--light-bg);
  border-radius: var(--radius-sm);
}

.single-product-section .shipping-info i {
  color: var(--primary-color);
}

.single-product-section .tabs {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.single-product-section .tab-btn {
  padding: 15px 30px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.single-product-section .tab-btn.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.single-product-section .tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.single-product-section .tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.single-product-section .tab-content h3 {
  margin-top: 20px;
  margin-bottom: 15px;
}

.single-product-section .tab-content ul {
  list-style: disc;
  padding-right: 20px;
  margin-bottom: 20px;
}



.single-product-section .specifications-table {
  width: 100%;
  border-collapse: collapse;
}

.single-product-section .specifications-table tr {
  border-bottom: 1px solid var(--border-color);
}

.single-product-section .specifications-table td {
  padding: 15px;
}

.single-product-section .specifications-table td:first-child {
  font-weight: 600;
  width: 30%;
}

.single-product-section .review {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.single-product-section .review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.single-product-section .reviewer {
  display: flex;
  align-items: center;
}

.single-product-section .reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 15px;
}

.single-product-section .reviewer-info h4 {
  margin-bottom: 5px;
}

.single-product-section .reviewer-info span {
  color: var(--text-light);
  font-size: var(--font-size-sm);
}

.single-product-section .review-rating {
  color: var(--warning-color);
}

.single-product-section .review-body {
  color: var(--text-light);
  line-height: 1.8;
}

.related-products {
  padding: var(--section-padding);
  background-color: var(--body-color);
}

@media (max-width: 992px) {
  .single-product-section .product-container {
    flex-direction: column;
  }

  .single-product-section .product-gallery,
  .single-product-section .product-info {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .single-product-section .product-gallery {
    grid-template-columns: 1fr;
  }

  .single-product-section .thumbnails {
    flex-direction: row;
    order: 2;
    margin-top: 20px;
  }

  .single-product-section .main-image {
    order: 1;
  }

  .single-product-section .main-image img {
    height: 350px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
  background-color: #f8f9fa;
  padding-top: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-about {
  margin-bottom: 20px;
}

.footer-about .footer-logo {
  display: inline-block;
}

.footer-about p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.footer-links h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text-light);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-right: 5px;
}

.footer-contact h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-contact p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.footer-contact p i {
  margin-left: 10px;
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 10px 0;
  text-align: center;
}

.copyright p {
  font-size: var(--font-size-sm);
  color: var(--text-light);
}

.copyright a {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .swiper-arrows {
    display: none;
  }



  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .slide .content h1 {
    font-size: 2.25rem;
  }


  .slide {
    flex-direction: column;
  }

  .slide {
    row-gap: 60px;
    padding: 0;
  }

  .slide .content {
    width: 100%;
    padding: 15px;
  }

  .slide .content::before {
    top: -15px;
    right: 5%;
    background-color: rgba(242, 252, 228, 0.50);
    width: 90%;
    height: 100%;
    border-radius: 25px;
    z-index: -1;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }

  .slide .content::after {
    display: none;
  }

  .hero-swiper-slide {
    padding: 50px 10px;
  }

  .slide .image .sec-image {
    position: absolute;
    width: 100px;
    height: 100px;
    top: -40px;
    left: -10px;
    padding: 5px;
    border-radius: 25px;
  }

}

/* Your existing CSS above 768px goes here */

/* Additional CSS for mobile navigation */



@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    gap: 10px;
  }

  .main-header {
    flex-wrap: wrap;
  }

  .logo {
    width: 125px;
  }

  .search-bar {
    order: 3;
    margin: 0 auto 10px;
    min-width: 100%;
    flex: 1;
  }

  .main-nav.active {
    right: 0;
    /* Show when active */
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hide by default */
    width: 300px;
    height: 100vh;
    z-index: 9999;
    background: #fff;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding-top: 90px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    row-gap: 15px;
    height: auto;
  }

  .main-nav ul li {
    margin: 0;
    padding-right: 10px;
    width: 100%;
    transition: padding .2s ease-in;
  }

  .main-nav ul li:hover {
    padding-right: 15px;
  }

  .main-nav ul li a {
    display: block;
  }


  .menu-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .menu-toggle:hover {
    transform: scale(1.1);
  }

  .menu-toggle i {
    color: white;
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
  }


  /* Icon rotation effect */
  .menu-toggle.active i.fa-bars {
    opacity: 0;
  }

  .menu-toggle.active i.fa-times {
    opacity: 1;
  }

  .menu-toggle i.fa-times {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }

  .menu-toggle i.fa-bars {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }

  /* Overlay for closing menu */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-section {
    margin: 10px;
  }

  .slide .content {
    text-align: center;
    margin-bottom: 30px;
  }

  .newsletter-box {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-box .content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: center;
  }

}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }
}

@media (max-width: 576px) {

  .footer-top {
    grid-template-columns: 1fr;
  }

  .banner {
    padding: 30px;
  }

  .banner h2 {
    font-size: 1.75rem;
  }

  .newsletter-box {
    padding: 30px;
  }

  .newsletter-form .form-group {
    flex-direction: column;
  }

  .newsletter-form input[type="email"] {
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
  }

  .newsletter-form .btn {
    border-radius: var(--radius-sm);
    width: 100%;
  }
}

/* Products */
/* Additional styles specific to products page */
.products-page-section {
  padding: 50px 0;
  background-color: var(--body-color);
}

.products-container {
  display: flex;
  gap: 30px;
}

.sidebar {
  flex: 0 0 280px;
}

.main-content {
  flex: 1;
}

.filter-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
}

.filter-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.category-filter ul li {
  margin-bottom: 12px;
}

.category-filter ul li a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
  transition: var(--transition);
}

.category-filter ul li a:hover {
  color: var(--primary-color);
  transform: translateX(-5px);
}

.category-filter ul li a span {
  color: var(--text-light);
  font-size: 14px;
}


/* Your existing styles */
.price-filter .price-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.price-filter .price-inputs input {
  width: 45%;
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.price-filter .price-slider {
  margin-bottom: 15px;
  height: 5px;
  background-color: var(--border-color);
  border-radius: var(--radius-sm);
  position: relative;
}

.price-filter .price-slider .slider-range {
  position: absolute;
  top: 0;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: var(--radius-sm);
}

.price-filter .price-slider .slider-handle {
  width: 15px;
  height: 15px;
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -5px;
  cursor: pointer;
}

.price-filter .price-slider .handle-min {
  left: 25%;
}

.price-filter .price-slider .handle-max {
  left: 75%;
}

/* Style the HTML5 range inputs to match your design */
.price-filter .range-container {
  position: relative;
  margin-bottom: 15px;
}

.price-filter input[type="range"] {
  position: absolute;
  width: 100%;
  height: 10px;
  background: transparent;
  outline: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  top: 0;
}

.price-filter input[type="range"]::-webkit-slider-track {
  height: 5px;
  background: transparent;
  border-radius: var(--radius-sm);
}

.price-filter input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  -webkit-appearance: none;
  appearance: none;
}

.price-filter input[type="range"]::-moz-range-track {
  height: 5px;
  background: transparent;
  border-radius: var(--radius-sm);
  border: none;
}

.price-filter input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  -moz-appearance: none;
  appearance: none;
}

.price-filter .range-track {
  height: 10px;
  background-color: var(--border-color);
  border-radius: var(--radius-sm);
  position: relative;
}

.price-filter .range-fill {
  position: absolute;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: var(--radius-sm);
  top: 0;
}

.price-filter .btn {
  width: 100%;
}

.price-display {
  text-align: center;
  margin: 10px 0;
  color: #666;
  font-size: 14px;
}

.brand-filter .brand-list {
  max-height: 200px;
  overflow-y: auto;
}

.brand-filter .brand-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.brand-filter .brand-checkbox {
  margin-left: 10px;
}

.rating-filter .rating-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.rating-filter .stars {
  margin-left: 10px;
  color: var(--warning-color);
}

.rating-filter .rating-count {
  color: var(--text-light);
  font-size: 14px;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.filter-buttons .btn {
  flex: 1;
  padding: 10px;
  font-size: 14px;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-bottom: 30px;
  background-color: var(--white);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow);
}

.view-options {
  display: flex;
  align-items: center;
}

.view-options button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--text-light);
  margin-right: 10px;
  border: 1px solid var(--border-color);
}

.view-options button.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

@media (max-width: 768px) {
  .view-options {
    display: none;
  }
}

.sort-options {
  display: flex;
  align-items: center;
}

.sort-options label {
  margin-left: 10px;
}

.sort-options select {
  padding: 8px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-color);
}

.all-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}

.all-products-grid.list-view {
  display: block;
}

.all-products-grid.list-view .product-card {
  margin-bottom: 15px;
}

.all-products-grid.list-view .product-card>a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.all-products-grid.list-view .product-card img {
  height: 250px;
  object-fit: contain;
  width: 300px;
}

.all-products-grid.list-view .product-card .product-details {
  flex: 1;
  border-top: none;
}

.product-card .product-description {
  display: none;
}

.all-products-grid.list-view .product-card .product-description {
  display: none;
  margin: 15px 0;
  color: var(--text-light);
}

.mobile-filter-toggle {
  display: none;
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination ul {
  display: flex;
  gap: 10px;
}

.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.pagination li a:hover,
.pagination li a.active,
.pagination li a.current,
.pagination li span.current{
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

@media (max-width: 992px) {
  .products-container {
    flex-direction: column;
  }

  .sidebar {
    flex: 0 0 100%;
    display: none;
  }

  .sidebar.active {
    display: block;
  }

  .mobile-filter-toggle {
    display: block;
  }

  .slide .image .sec-image {
    transform: translateX(-300%);
  }

  .hero-swiper-slide.swiper-slide-active .sec-image {
    transform: translateX(0);
  }
}

/* WHO WE ARE */

/* من نحن (About Us) Page Specific Styles */

/* Hero Section */
.about-hero {
  text-align: center;
  padding: 50px 0;
  background-color: rgba(59, 183, 126, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 50px;
}

.about-hero h1 {
  font-size: var(--font-size-xxxl);
  margin-bottom: 15px;
  color: #333;
}

.about-hero .lead {
  font-size: var(--font-size-lg-sm);
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

/* Our Story Section */
.our-story {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
  align-items: center;
}

.story-content {
  flex: 1;
  min-width: 300px;
}

.story-image {
  flex: 1;
  min-width: 300px;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Our Mission Section */
.our-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
  align-items: center;
}

.mission-content {
  flex: 1;
  min-width: 300px;
}

.mission-image {
  flex: 1;
  min-width: 300px;
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.vision,
.mission {
  margin-bottom: 20px;
}

/* Our Values Section */
.our-values {
  margin-bottom: 60px;
  text-align: center;
}

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

.values-grid-homepage {
  padding: var(--section-padding);
  margin-top: 0;
}

.value-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: var(--box-shadow);
}

.value-card .icon {
  font-size: var(--font-size-xxxl);
  margin-bottom: 15px;
  color: var(--primary-color);
}

.value-card h3 {
  margin-bottom: 15px;
  color: #333;
}

/* Our Team Section */
.our-team {
  margin-bottom: 60px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-member {
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(59, 183, 126, 0.2);
}

.member-image {
  overflow: hidden;
  height: 450px;
}

.member-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.team-member h3 {
  margin: 15px 0 5px;
  color: #333;
}

.team-member .position {
  color: var(--primary-color-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member .bio {
  padding: 0 20px 20px;
  color: #666;
}

/* Our Achievements Section */
.our-achievements {
  margin-bottom: 60px;
  text-align: center;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.achievement {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
}

.achievement:hover {
  transform: translateY(-5px);
}

.achievement-count {
  font-size: var(--font-size-xxxl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Section Headings */
.about-us-content h2 {
  position: relative;
  font-size: var(--font-size-xxl);
  margin-bottom: 30px;
  padding-bottom: 15px;
  color: #333;
}

.about-us-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-light);
}

.our-values h2::after,
.our-team h2::after,
.our-achievements h2::after {
  right: 50%;
  transform: translateX(50%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .our-story,
  .our-mission {
    flex-direction: column;
  }

  .our-mission {
    flex-direction: column-reverse;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero .lead {
    font-size: var(--font-size-md);
  }

  .achievement-count {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {

  .values-grid,
  .team-grid,
  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 30px 0;
  }

  .about-us-content h2 {
    font-size: var(--font-size-xl);
  }
}

/* Contact Page */
/* Additional styles specific to contact page */
.contact-section {
  padding: 70px 0;
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-container .contact-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-card .icon {
  background-color: var(--primary-color);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  margin-left: 15px;
  flex-shrink: 0;
}

.contact-card .details h3 {
  font-size: var(--font-size-md-lg);
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-card .details p,
.contact-card .details a {
  color: var(--text-light);
  line-height: 1.6;
}

.social-media {
  margin-top: 30px;
}

.social-media h3 {
  font-size: var(--font-size-md-lg);
  font-weight: 600;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow);
}

.form-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-check input {
  margin-left: 10px;
  margin-top: 5px;
}

.form-check label {
  color: var(--text-light);
  font-size: var(--font-size-sm);
}

.map-container {
  margin-top: 70px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }


  .contact-form {
    padding: 30px;
  }
}


/* Cart Page*/

/*--------------------------------------------------------------
 # Cart Page Styles
--------------------------------------------------------------*/
.shopping-cart-section {
  padding: var(--section-padding);
  background-color: var(--white);
}
.cart-items-container {
  overflow-x: hidden;
  overflow-y: auto;
    max-height: 600px;
}

.shopping-cart-related-products {
  padding: var(--section-padding);
}

.page-title-cart {
  text-align: center;
  margin-bottom: 50px;
}

.page-title-cart h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.page-title-cart p {
  color: var(--text-light);
  font-size: var(--font-size-md-lg);
}

.cart-wrapper {
  display: grid;
  align-items: start;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.cart-items-section {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.cart-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 2px solid var(--border-color);
  font-weight: 600;
  color: var(--text-color);
}

.cart-product-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--white);
  position: relative;
 margin-bottom: 20px;
}

.product-image-cart {
  width: 120px;
  height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  align-self: center;
}

.product-details-container {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}


.product-title {
  font-size: var(--font-size-md-lg);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.spec-item {
  font-size: var(--font-size-xs);
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-dot {
  width: 4px;
  height: 4px;
  background: var(--text-light);
  border-radius: 50%;
}

.warranty-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.warranty-icon {
  color: var(--primary-color);
  font-size: var(--font-size-sm);
}

.warranty-text {
  font-size: var(--font-size-xs);
  color: var(--primary-color);
  font-weight: 500;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-actions {
  display: flex;
}

.original-price {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  text-decoration: line-through;
}

.current-price {
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.quantity-controls-cart {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn-cart {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-color);
  transition: var(--transition);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.qty-btn-cart:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.qty-input-cart {
  width: 50px;
  height: 32px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--font-size-md);
  background: var(--white);
}

.remove-btn-cart {
color: var(--error-color);
    font-size: var(--font-size-lg);
    cursor: pointer;
    transition: var(--transition);
    padding: 0px 5px;
    margin-right: 10px;
    border-radius: var(--radius-sm);
}

.remove-btn-cart:hover {
  background: rgba(255, 104, 104, 0.1);
  transform: scale(1.1);
}

.cart-actions-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.continue-shopping-cart {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  font-weight: 600;
}

.continue-shopping-cart:hover {
  color: var(--primary-color);
}

.update-cart-btn {
  padding: 12px 25px;
}

/*--------------------------------------------------------------
        # Cart Summary
        --------------------------------------------------------------*/
.cart-summary-section {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--box-shadow);
  height: fit-content;
}

.summary-title-cart {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-color);
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.summary-row-cart {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: var(--font-size-md);
}

.summary-row-cart span:first-child {
  color: var(--text-light);
}

.summary-row-cart span:last-child {
  font-weight: 600;
  color: var(--text-color);
}

.summary-total-cart {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  margin: 20px 0;
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.summary-total-cart span:first-child {
  color: var(--text-color);
}

.summary-total-cart span:last-child {
  color: var(--primary-color);
}

.checkout-btn-cart {
  width: 100%;
  padding: 15px;
  font-size: var(--font-size-md-lg);
  font-weight: 700;
  margin-bottom: 15px;
}

.coupon-section-cart {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}

.coupon-title-cart {
  font-size: var(--font-size-md-lg);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.coupon-form-cart {
  display: flex;
  gap: 10px;
}

.coupon-input-cart {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
}

.coupon-btn-cart {
  padding: 12px 20px;
  font-size: var(--font-size-sm);
}

/*--------------------------------------------------------------
        # Empty Cart
        --------------------------------------------------------------*/
.empty-cart-section {
  text-align: center;
  padding: 100px 20px;
}

.empty-cart-icon {
  font-size: 5rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.empty-cart-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.empty-cart-section p {
  color: var(--text-light);
  font-size: var(--font-size-md-lg);
  margin-bottom: 30px;
}


/*--------------------------------------------------------------
        # Responsive Design
        --------------------------------------------------------------*/
@media (max-width: 1200px) {
  .products-grid-cart {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .cart-wrapper {
    grid-template-columns: 1fr;
  }

  .products-grid-cart {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content-cart {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .cart-items-section,
  .cart-summary-section {
    padding: 20px;
  }

  .cart-table-header {
    display: none;
  }

  .cart-product-item {
    gap: 15px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
    margin-bottom: 20px !important;
    
  }

  .product-info-cart {
    justify-content: space-between;
    text-align: center;
  }

  .quantity-controls-cart {
    justify-content: center;
  }

  .main-header-cart {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links-cart {
    margin: 0;
  }

  .nav-links-cart ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .products-grid-cart {
    grid-template-columns: 1fr;
  }

  .footer-content-cart {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-actions-section {
    flex-direction: column;
    gap: 20px;
  }

  .coupon-form-cart {
    flex-direction: column;
  }
}



/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-size-xl);
  color: var(--text-color);
  cursor: pointer;
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }
}