:root {
  --primary-color: #1a5c1c;
  --secondary-color: #6ac06d;
  --bg-green: #e4ffe5;
  --text-color: #000000;
  --light-text: #333;
  --light-text-2: #777;
  --background-color: #ffffff;
  --alt-bg-color: #848181;
  --border-color: #d3d3d3;
  --white: #ffffff;
  --white-grey: #efefef;
  --black: #000000;
  --light-blue: #21c1ff;
  --light-green: #2ecc71;
  --box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  --font-serif: "Playfair Display", serif;
  --font-sans: "Poppins", sans-serif;
  --dark-red: #c40d0d;
  --red: #fe1c1c;
  --overlay-bg-col: rgba(0, 0, 0, 0.7);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
  line-height: 1.5;
}

a {
  color: inherit;
}

/* ===========================================================
Common CSS Start
============================================================ */
.container {
  max-width: 1232px;
  margin-inline: auto;
}
.page-container {
  padding: 50px 16px;
}
.page-container h1 {
  padding-bottom: 16px;
  padding-top: 18px;
}
.page-container h2 {
  padding-bottom: 12px;
  padding-top: 16px;
}
.page-container h3 {
  padding-bottom: 8px;
  padding-top: 12px;
}
.page-container p {
  color: var(--light-text);
}
.container#hero {
  max-width: 1200px;
  margin-inline: auto;
}
.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title .subtitle {
  font-family: var(--font-sans);
  display: block;
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2px;
}

.section-title h2 {
  font-size: 24px;
  color: var(--text-color);
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.section-title h2 span {
  color: var(--primary-color);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 21px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-sans);
  transition: all 0.3s;
}

.btn-primary {
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--text-color);
}

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

.btn-dark {
  border-radius: 100px;
  border: 1px solid var(--text-color, #000);
  color: var(--text-color, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.grid-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 16px;
}

/* ===========================================================
Common CSS End
============================================================ */
/* ===========================================================
Side-navbar & cart CSS Start
============================================================ */
/* Overlay (behind sidebar) */
.overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-bg-col);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 150;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  transition: 0.4s ease;
  padding: 74px 16px 0 24px;
  overflow-y: auto;
}
#sidebar {
  width: 330px;
  left: -350px;
}

/* Active states */
#sidebar.active {
  left: 0;
}

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

/* cart sidebar */
#cart_sidebar {
  padding: 24px 16px 0 24px;
  width: 100%;
  max-width: 450px;
  right: -450px;
}
#cart_sidebar.active {
  right: 0;
}

/* filter sidebar */
#filter_sidebar {
  padding: 24px 16px 0 24px;
  width: 100%;
  max-width: 328px;
  right: -330px;
}
#filter_sidebar.active {
  right: 0;
}

/* Header */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.sidebar-header img {
  height: 32px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Menu */
.menu ul {
  list-style: none;
  padding: 0;
}

.menu > ul > li {
  border-bottom: 1px solid var(--border-color);
}
.menu .sub-menu li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.menu a,
.menu-item-has-children a {
  width: 100%;
  padding: 15px 0;
  font-size: 16px;
  text-decoration: none;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}

/* Submenu */
.menu .sub-menu {
  list-style: none;
  max-height: 0px !important;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
}

.sub-menu li a {
  font-size: 14px;
  padding: 10px 0;
  display: block;
}

/* Submenu open */
.menu-item-has-children.open .sub-menu {
  max-height: 300px !important;
}

.arrow {
  transition: transform 0.3s ease;
}

.menu-item-has-children.open .arrow {
  transform: rotate(180deg);
}

/* cart body */
.cart-body {
  height: 80vh;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cart-icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--light-text);
}

.cart-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cart-body p {
  font-size: 14px;
  color: var(--light-text-2);
  margin-bottom: 20px;
}

/* Button */
.shop-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background: var(--white);
  color: var(--primary-color);
}
/* ===========================================================
Side-navbar CSS End
============================================================ */
/* ===========================================================
Header CSS Start
============================================================ */
#header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 110;
  border-bottom: 1px solid var(--border-color);
}
#header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#desktop-menu {
  display: none;
}
.top-bar {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: var(--primary-color);
  text-align: center;
  padding: 8px 16px;
}
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  background: var(--white);
}
.logo img {
  height: 32px;
}
.header-icons {
  display: flex;
  gap: 12px;
}
.menu-icon img,
.header-icons img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.icon-cart {
  position: relative;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -4px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count:empty {
  display: none;
}

/* ===========================================================
Header CSS End
============================================================ */

/* ===========================================================
Hero CSS Start
============================================================ */

/* swiper css start */
/* Pagination container */
.swiper-pagination {
  bottom: 8px !important;
}

/* Default dot */
.swiper-pagination-bullet {
  width: 7px !important;
  height: 7px !important;
  background: var(--white) !important;
  opacity: 1 !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 4px !important;
}

/* Active dot */
.swiper-pagination-bullet-active {
  background: var(--secondary-color) !important;
}

/* swiper css end */

.home-hero-container {
  position: relative;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 18px;
  border-radius: 0 0 8px 8px;
}
.home-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    257deg,
    rgba(0, 0, 0, 0) -2.31%,
    rgba(0, 0, 0, 0.71) 52.6%
  );
}
.home-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.home-hero-content h1 {
  font-family: var(--font-serif);
  color: var(--background-color, #fff);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 5px;
}
.home-hero-content h1 span {
  color: var(--secondary-color, #6ac06d);
}
.home-hero-content p {
  color: var(--background-color, #fff);
  font-family: var(--font-sans);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 255px;
  padding-bottom: 16px;
}
.home-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* ===========================================================
Hero CSS End
============================================================ */

/* ===========================================================
Categories CSS Start
============================================================ */

#categories {
  padding: 50px 0;
}
#categories a {
  text-decoration: none;
}
.categories-scroll {
  padding: 0 16px;
}
.categories-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.category-card {
  flex: 1 0 123px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.category-card img {
  width: 100%;
  height: 93px;
  object-fit: cover;
  border-radius: 8px;
}
.category-card p {
  color: var(--text-color);
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-decoration: none;
}
/* ===========================================================
Categories CSS End
============================================================ */

/* ===========================================================
promo 1 CSS Start
============================================================ */
#promo1 {
  padding: 0 16px;
}
.promo-card {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}
.promo-bg {
  position: absolute;
  inset: 0;
}
.promo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    249deg,
    rgba(0, 0, 0, 0) 46.02%,
    rgba(0, 0, 0, 0.5) 88.65%
  );
}
.promo-content {
  position: relative;
  z-index: 1;
  padding: 20px 15px;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.discount-tag {
  display: block;
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}
.promo-content h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
}
.promo-content h3 span {
  display: block;
  color: var(--secondary-color);
}
.promo-content p {
  max-width: 215px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.shop-link {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
/* ===========================================================
promo 1 CSS End
============================================================ */
/* ===========================================================
Popular-products CSS Start
============================================================ */

#popular-products {
  padding: 50px 0;
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-image {
  position: relative;
  height: 205px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.discount-badge {
  position: absolute;
  top: 15px;
  left: 0;
  background: var(--bg-green);
  padding: 3px 10px;
  border-radius: 0 5px 5px 0;
  color: var(--light-text);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.custom-add-to-cart {
  position: absolute;
  bottom: 24px;
  width: calc(100% - 32px);
  z-index: 10;
  background: var(--secondary-color);
  border: none;
  padding: 6px;
  border-radius: 45px;
  cursor: pointer;
  color: var(--text-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 16px;
  transform: translateY(50px) scale(0.2);
  transition: all 0.3s;
}
.custom-add-to-cart:hover {
  background: var(--white);
}
.product-image:hover .custom-add-to-cart {
  transform: translateY(0px) scale(1);
}
.product-info {
  padding: 12px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-info h4 {
  color: var(--text-color);
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.price-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
}
.current-price {
  color: var(--light-text);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.old-price {
  color: var(--red);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: line-through;
}
.weight-selector {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.weight-selector span {
  display: inline-block;
}
.weight {
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid var(--border-color, #d3d3d3);
  color: var(--light-text);
  cursor: pointer;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.view-all-container {
  text-align: center;
  margin-top: 30px;
}
.product-card input[type="radio"] {
  display: none;
}
.product-card input[type="radio"]:checked + .weight {
  background: var(--bg-green);
  border-color: var(--primary-color);
  color: var(--primary-color);
}
/* ===========================================================
Popular-products CSS End
============================================================ */

#promo2 {
  padding: 0 16px;
}
/* Reusing promo-card styles from Promo1 */

/* ===========================================================
Best-selling CSS Start
============================================================ */
#best-selling {
  padding: 50px 16px;
}
.sellingSwiper {
  padding-bottom: 40px !important;
}
#best-selling .swiper-pagination {
  bottom: 0px !important;
}
#best-selling .swiper-pagination-bullet {
  background: var(--border-color) !important;
}
#best-selling .swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}
/* Reusing product-card styles from Popular-products */
/* ===========================================================
Best-selling CSS End
============================================================ */

/* ===========================================================
About-us CSS Start
============================================================ */
#about {
  padding: 0 16px 50px;
  text-align: center;
}
#about .section-title {
  margin-bottom: 11px;
}
.about-intro {
  margin-bottom: 20px;
  color: var(--text-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 300px;
  margin-inline: auto;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.about-content h3 {
  font-family: var(--font-serif);
  margin-bottom: 14px;
  color: var(--text-color);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.about-content p {
  margin-bottom: 30px;
  color: var(--text-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-inline: auto;
}
.btn-outline {
  border: 1px solid var(--text-color);
  color: var(--text-color);
  padding: 11px 21px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-inline: auto;
}
/* ===========================================================
About-us CSS End
============================================================ */
/* ===========================================================
Testimonials CSS Start
============================================================ */
#testimonials {
  position: relative;
  padding: 50px 16px 40px;
  color: var(--white);
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testimonials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-bg .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  inset: 0;
  visibility: visible;
  background: var(--overlay-bg-col);
  opacity: 1;
}
.testimonials-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.testimonials-content .section-title h2 {
  color: var(--background-color);
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 11px;
}
.testi-intro {
  color: var(--background-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}
.testimonialsSwiper {
  padding-bottom: 40px !important;
}
#testimonials .swiper-pagination {
  bottom: 0px !important;
}
.testimonial-card {
  background: var(--white);
  color: var(--text-color);
  padding: 16px 22px;
  border-radius: 8px;
  text-align: left;
}
.user-profile {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 16px;
}
.user-profile img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}
.user-info h5 {
  color: var(--text-color);
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.user-info .stars {
  display: flex;
  gap: 9px;
  margin-top: 9px;
}
.user-info .stars img {
  width: 13px;
  height: 13px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.review-text {
  color: var(--light-text-2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
/* ===========================================================
Testimonials CSS End
============================================================ */
/* ===========================================================
Gallery CSS Start
============================================================ */
#gallery {
  padding: 50px 16px;
  text-align: center;
}
#gallery .section-title h2 {
  margin-bottom: 11px;
}
.gallery-intro {
  color: var(--text-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
}
/* ===========================================================
Gallery CSS End
============================================================ */
/* ===========================================================
Blog CSS Start
============================================================ */
#blogs {
  padding-bottom: 50px;
  text-align: center;
}
#blogs .section-title h2 {
  margin-bottom: 11px;
  padding-inline: 16px;
}
.blog-intro {
  padding-inline: 16px;
  color: var(--text-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.blogSwiper {
  padding: 20px 16px 40px !important;
}
#blogs .swiper-pagination {
  bottom: 0px !important;
}
#blogs .swiper-pagination-bullet {
  background: var(--border-color) !important;
}
#blogs .swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
}
.blog-image {
  padding: 8px 8px 0;
}
.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.blog-content {
  padding: 18px 8px;
}
.blog-content h3 {
  color: var(--text-color);
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
.blog-content p {
  color: var(--alt-bg-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 13px;
}
.read-more {
  color: var(--primary-color);
  font-family: var(--font-sans);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-decoration: none;
}
.read-more span {
  text-underline-offset: 1px;
  text-underline-position: from-font;
  text-decoration-line: underline;
}
#all-blogs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-block: 50px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  padding: 0 16px;
}
/* ===========================================================
Blog CSS End
============================================================ */
/* ===========================================================
Footer CSS Start
============================================================ */
#footer {
  color: var(--white);
  background-color: var(--primary-color);
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  padding: 50px 16px 36px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.footer-logo img {
  height: 50px;
  filter: brightness(0) invert(1); /* Make logo white if it's not */
}
.footer-logo p {
  color: var(--background-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.footer-links h4,
.footer-contact h4 {
  color: var(--background-color);
  font-family: var(--font-sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.footer-links h4 {
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--background-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  text-decoration: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contact-item {
  text-align: center;
  color: var(--background-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-item img {
  display: inline-block;
  margin-right: 8px;
  transform: translateY(4px);
}

.footer-bottom {
  background-color: var(--black);
  padding: 34px 16px 125px;
}
.footer-bottom p {
  text-align: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.legal-links-wrapper ul {
  display: flex;
  justify-content: center;
  gap: 8px 22px;
  margin: 8px;
  padding: 0;
  flex-wrap: wrap;
}
.legal-links-wrapper li {
  list-style: none;
}
.legal-links-wrapper a {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  text-decoration: none;
}
.desktop-only {
  display: none;
}
/* ===========================================================
Footer CSS End
============================================================ */
/* ===========================================================
Bottom-nav CSS Start
============================================================ */
.bottom-nav {
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 412px;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 12px 16px 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  border-radius: 20px 20px 0 0;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--light-text-2);
  font-size: 10px;
  cursor: pointer;
  padding-inline: 20px;
  position: relative;
}
.nav-item img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.nav-item span {
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.nav-item .cart-count {
  color: var(--white);
  top: -6px;
  right: 20px;
  font-size: 11px;
}
/* ===========================================================
Bottom-nav CSS End
============================================================ */
/* ===========================================================
404 page CSS Start
============================================================ */
.notfound-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.notfound-section h1 {
  font-size: 64px;
  color: var(--red);
  margin-bottom: 10px;
}

.notfound-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.notfound-section p {
  color: var(--light-text-2);
  margin-bottom: 25px;
}

.btn-404 {
  display: inline-block;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  text-decoration: none;
  border-radius: 30px;
  margin: 5px;
}

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

/* ===========================================================
404 page CSS End
============================================================ */

/* ========================================================================================================================================================================================================= Contact Us Page CSS =========================================================================================================================================================================================================== */

.hero-container {
  position: relative;
  width: 100%;
  height: 214px;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.71) 100%),
    var(--hero-img-url) lightgray -3.224px 0px / 101.565% 130.374% no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero-content h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.hero-content h2 span {
  color: var(--secondary-color);
}

.hero-content p {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0;
  max-width: 254px;
}

#contact-info {
  padding: 50px 16px;
}
.contact-ways {
  margin-top: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-ways-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--Padding-color, #777);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.form-wrapper {
  padding: 0 16px;
  display: flex;
  justify-content: center;
}

.contact-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  padding: 25px 17px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  color: var(--text-dark);
  box-sizing: border-box;
}

.form-input::placeholder {
  color: var(--light-text-2);
}

.textarea {
  height: 118px;
  resize: none;
  font-family: var(--font-main);
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.map-container {
  padding: 50px 16px;
}
.map-container iframe {
  border-radius: 8px;
  width: 100%;
  height: 191px;
}

.form-errors {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-errors p {
  padding: 8px 22px;
  border-radius: 8px;
  background-color: var(--dark-red);
  color: var(--white);

  opacity: 0;
  transform: translateY(10px);

  animation: errorFade 6s ease forwards;
}

/* Animation */
@keyframes errorFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-5px);
  }
}

.form-errors p:nth-child(1) {
  animation-delay: 0s;
}
.form-errors p:nth-child(2) {
  animation-delay: 0.2s;
}
.form-errors p:nth-child(3) {
  animation-delay: 0.4s;
}
.form-errors p:nth-child(4) {
  animation-delay: 0.6s;
}
.form-errors p:nth-child(5) {
  animation-delay: 0.8s;
}

/* ========================================================================================================================================================================================================= About Us Page CSS =========================================================================================================================================================================================================== */
#about-info {
  padding: 50px 16px;
}
#about-info p {
  text-align: center;
}
.about-grid {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px 32px;
}
.about-card-heading {
  color: var(--Primary-Color, #1a5c1c);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 142px;
  margin-inline: auto;
  margin-bottom: 16px;
}
.about-card-item p {
  color: var(--light-text-2);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-green {
  background-color: var(--bg-green);
  padding: 50px 16px;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.content-container-wraper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#why-choose-us .section-title {
  margin: 0;
}

#why-choose-us img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 380 / 205;
}

.benefits-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#why-choose-us .benefit-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
#about-us {
  padding: 50px 16px;
}
#about-us img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 380 / 295;
  margin-bottom: 20px;
}
#about-us .section-title {
  margin-bottom: 16px;
}
#about-us .description-text {
  font-family: var(--font-sans);
  color: var(--text-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ========================================================================================================================================================================================================= Shop Page CSS =========================================================================================================================================================================================================== */
.all-product-sec .filter-sidebar-container {
  display: none;
}
#search-sec {
  display: flex;
  justify-content: flex-end;
}
.search-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 600px;
  padding: 16px;
}

.search-box {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--white-grey);
  border-radius: 8px;
}

.search-box input {
  width: 100%;
  padding: 15px 16px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: var(--white-grey);
  font-size: 16px;
  color: var(--text-color);
}

.search-box input::placeholder {
  color: var(--light-text-2);
  font-family: var(--font-sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.search-icon {
  font-size: 20px;
  color: var(--text-color);
  padding: 16px;
}
.search-icon img {
  cursor: pointer;
}
.filter-btn {
  background-color: transparent;
  border: none;
}

#all-products {
  padding-bottom: 50px;
}

.no-product {
  padding-top: 50px;
  grid-column: 1 / span 2;
  text-align: center;
}

/* filter sidebar */
/* General Section Styling */
.category-section {
  margin-top: 100px;
}
.size-section {
  margin-top: 15px;
}

.filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 24px;
  margin-bottom: 15px;
}

.filter-label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
}

.arrow-icon {
  width: 12px;
  height: 8px;
}

.divider {
  height: 1px;
  background-color: var(--light-text-2);
  width: 100%;
}

/* Price Section */
.price-section {
  margin-top: 15px;
}
.filter-section .btn {
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.price-subtitle {
  margin: 15px 0 0 0;
  font-size: 16px;
  color: var(--light-text-2);
  line-height: 21px;
}

.range-slider {
  text-align: left;
  position: relative;
  height: 70px;
}
.range-slider .rangeValues {
  display: block;
}

input[type="range"] {
  -webkit-appearance: none;
  border: 1px solid var(--white);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 18px;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  background: var(--border-color);
  border: none;
  border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  margin-top: -5px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: var(--border-color);
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 5px;
  background: var(--border-color);
  border: none;
  border-radius: 3px;
}

input[type="range"]::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--primary-color);
}

/*hide the outline behind the border*/

input[type="range"]:-moz-focusring {
  outline: 1px solid var(--white);
  outline-offset: -1px;
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 5px;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent;
  z-index: -4;
}

input[type="range"]::-ms-fill-lower {
  background: var(--light-text-2);
  border-radius: 10px;
}

input[type="range"]::-ms-fill-upper {
  background: var(--border-color);
  border-radius: 10px;
}

input[type="range"]::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--light-blue);
}

input[type="range"]:focus::-ms-fill-lower {
  background: var(--light-text-2);
}

input[type="range"]:focus::-ms-fill-upper {
  background: var(--border-color);
}

/* size checkboc section */
/* This css is for normalizing styles. You can skip this. */
.form-group label::before,
.form-group label::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

.form-group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
}

.form-group label::before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.form-group input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 6px;
  width: 5px;
  height: 8px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.reset-section .btn {
  width: 100%;
  margin-top: 15px;
}
/* ========================================================================================================================================================================================================= Single Product Page CSS =========================================================================================================================================================================================================== */

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.product-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}

.main-image-wrapper {
  width: 100%;
  height: 383px;
  overflow: hidden;
}

.main-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 8px 8px;
}

.thumbnails-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 16px;
  overflow-x: auto;
  justify-content: center;
}

.thumb-item {
  aspect-ratio: 1 / 1;
  flex: 0 0 80px;
  border-radius: 0px;
  overflow: hidden;
  background-color: var(--border-color);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-container {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

.product-header {
  margin-bottom: 16px;
}

.product-title {
  margin-top: 14px;
  color: var(--text-color);
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.stars {
  display: flex;
  gap: 4px;
}

.rating-count {
  color: var(--light-text);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-current-price {
  color: var(--text-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.product-original-price {
  color: var(--red);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: line-through;
}

.product-discount-badge {
  border-radius: 5px;
  background: var(--bg-green);
  padding: 3px 9px;
  color: var(--light-text);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-description {
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.product-weight-selection {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}
.product-weight-selection input[type="radio"] {
  display: none;
}
.product-weight-selection input[type="radio"]:checked + .weight {
  background: var(--bg-green);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.cart-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 98px;
  height: 30px;
}

.qty-btn {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.qty-val {
  color: var(--light-text);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-add-to-cart-btn {
  height: 30px;
  border-radius: 5px;
  background: var(--secondary-color, #6ac06d);
  color: var(--text-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 134px;
}

.meta-container {
  padding: 30px 16px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.meta-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-label {
  color: var(--light-text-2);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.meta-content p {
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.separator {
  height: 1px;
  background-color: var(--white-grey);
  width: 100%;
}

.benefits-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#similar-products-sec {
  padding: 0 16px 50px;
}

#similar-products-sec .swiper-pagination {
  bottom: 0px !important;
}
#similar-products-sec .swiper-pagination-bullet {
  background: var(--border-color) !important;
}
#similar-products-sec .swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}

/* ========================= */
/* CART SUCCESS POPUP */
/* ========================= */

.cart-success-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.cart-success-popup.active {
  display: block;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bg-col);
}

.popup-box {
  position: relative;
  width: 420px;
  max-width: 90%;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  margin: 120px auto;
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.popup-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-green);
  color: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px;
}

.popup-message {
  margin-top: 10px;
  font-size: 14px;
  color: var(--light-text-2);
  gap: 10px;
}
.popup-message a {
  display: none !important;
}

.popup-actions {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.popup-btn {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

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

.popup-btn.secondary {
  background: var(--border-color);
}

/* Hide dropdown and price section visually but keep functional */
.variations select,
.woocommerce-variation-price {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Radio container */
.custom-variation-radios {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: 8px;
}

.custom-variation-radios label {
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid var(--border-color, #d3d3d3);
  color: var(--light-text);
  cursor: pointer;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.custom-variation-radios label.active {
  background: var(--bg-green);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.reset_variations {
  display: none !important;
}

#single-product-info .single_add_to_cart_button {
  background: var(--secondary-color);
  border: none;
  padding: 8px 42px;
  border-radius: 45px;
  cursor: pointer;
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s;
  margin-block: 12px;
}

/* ============================= */
/* CUSTOM QUANTITY DESIGN */
/* ============================= */
#single-product-info {
  .quantity {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 0;
    padding: 12px 0;
  }

  /* Hide default arrows */
  .quantity input[type="number"]::-webkit-inner-spin-button,
  .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .quantity input[type="number"] {
    -moz-appearance: textfield;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    width: 40px;
    outline: none;
  }

  .qty-minus,
  .qty-plus {
    height: 36px;
    width: 36px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .qty-minus:hover,
  .qty-plus:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }

  .woocommerce-variation-add-to-cart {
    display: flex;
    gap: 20px;
  }
}

/*
========================================================================================================================================================================================================= SINGLE BLOG PAGE CSS =========================================================================================================================================================================================================== */

.single-blog {
  padding-bottom: 0px;
}

.single-blog article {
  background: var(--white);
}

.featured-image img {
  width: 100%;
  border-radius: 0 0 8px 8px;
  margin-bottom: 15px;
  height: 320px;
  object-fit: cover;
  object-position: center;
}
.single-blog-content {
  padding-inline: 16px;
  padding-bottom: 25px;
}
.single-blog h2 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.single-blog .meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: var(--light-text-2);
  margin-bottom: 15px;
  text-transform: capitalize;
}
.single-blog .meta .green {
  color: var(--primary-color);
}

.single-blog .content {
  font-size: 16px;
  color: var(--light-text);
}

.single-blog .content p {
  margin-bottom: 0;
}
.related-blogs {
  padding-block: 25px;
}
.related-blogs .swiper-pagination {
  bottom: 0px !important;
}
.related-blogs .swiper-pagination-bullet {
  background: var(--border-color) !important;
}
.related-blogs .swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}

/* ===============================
   COMMENTS SECTION
================================= */

.comments-area {
  margin-top: 25px;
  background: var(--white);
  padding-inline: 16px;
}
.comments-area ul {
  list-style: none;
  margin-top: 15px;
}
.comments-title {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Comment List */

.comment-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.comment-list li {
  padding-bottom: 15px;
}
.comment-list article {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.comment-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comment-body footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.comment-body footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.comment-body .edit-link {
  cursor: pointer;
  color: var(--primary-color);
}
.comment-body .comment-author b {
  text-transform: capitalize;
  color: var(--primary-color);
}

.comment-author img {
  border-radius: 50%;
}

.comment-content {
  font-size: 12px;
  color: var(--light-text);
  margin-top: 8px;
}

.comment-meta {
  font-size: 12px;
  color: var(--light-text-2);
}

.comment-reply-link {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
  cursor: pointer;
  color: var(--primary-color);
}

/* ===============================
   COMMENT FORM
================================= */
.comment-reply-title {
  font-size: 22px;
}
.comment-form-wrapper {
  padding-bottom: 50px;
}
.comment-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 500;
}
.logged-in-as,
.comment-notes {
  font-size: 12px;
  color: var(--light-text);
  padding-block: 8px;
}
.logged-in-as a,
.comment-notes a {
  cursor: pointer;
  color: var(--primary-color);
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  font-size: 12px;
  transition: 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--black);
  outline: none;
}

.comment-form textarea {
  min-height: 120px;
  resize: none;
}

.comment-form input[type="submit"] {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}
.comment-reply-title {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
}
.comment-reply-title a {
  cursor: pointer;
  padding-left: 8px;
  font-family: var(--font-sans);
  color: var(--primary-color);
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 400;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.comment-form-cookies-consent input {
  width: auto;
  margin: 0;
}
.comment-form-cookies-consent label {
  margin: 0;
}

/*
========================================================================================================================================================================================================= MY ACCOUNT PAGE CSS =========================================================================================================================================================================================================== */
/* ===============================
   WOOCOMMERCE MY ACCOUNT
================================ */

.my-account-page {
  padding: 50px 0;
  background: var(--white);
}

#my-account .woocommerce {
  padding-inline: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Navigation */
#my-account .woocommerce-MyAccount-navigation {
  width: 260px;
}

#my-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#my-account .woocommerce-MyAccount-navigation li {
  margin-bottom: 12px;
}

#my-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 16px;
  background: #f5f5f5;
  border-radius: 8px;
  font-weight: 500;
}

#my-account .woocommerce-MyAccount-navigation li.is-active a,
#my-account .woocommerce-MyAccount-navigation a:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Forms */
#my-account .woocommerce form input,
#my-account .woocommerce form select,
#my-account .woocommerce form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

#my-account .woocommerce button.button {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
}

#my-account .woocommerce-info {
  border-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#my-account .woocommerce-info::before {
  color: var(--primary-color);
  transform: translateY(3px);
}
#my-account .woocommerce .woocommerce-info a {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white);
  font-weight: 600;
  transition: all 0.3s;
}
#my-account .woocommerce .woocommerce-info a:hover {
  background-color: transparent;
  color: var(--primary-color);
}
#my-account .woocommerce-MyAccount-content > p {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 20px;
}
#my-account .woocommerce-Address {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 8px;
}
#my-account .woocommerce-Address-title h2 {
  font-size: 22px;
}
#my-account .woocommerce-Address-title a {
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--primary-color);
}
#my-account .woocommerce-Address address {
  margin-top: 10px;
  font-size: 14px;
  color: var(--light-text);
}

#my-account .woocommerce-EditAccountForm fieldset {
  display: none;
}
#my-account .woocommerce-MyAccount-content a {
  color: var(--primary-color);
  font-weight: 600;
}
#my-account .woocommerce-MyAccount-content h2 {
  padding-bottom: 20px;
}

#my-account .woocommerce label {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

#my-account .woocommerce input,
#my-account .woocommerce textarea,
#my-account .selection > span {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 5px;
  font-size: 12px;
  transition: 0.3s ease;
  position: relative;
}

#my-account .woocommerce input:focus,
#my-account .woocommercetextarea:focus {
  border-color: var(--black);
  outline: none;
}

#my-account .woocommerce textarea {
  min-height: 120px;
  resize: none;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
  width: 48.5%;
}

#my-account .woocommerce-form-row span {
  font-size: 12px;
  color: var(--light-text);
}

/*
========================================================================================================================================================================================================= CART PAGE CSS =========================================================================================================================================================================================================== */
/* ==============================
   CART PAGE BASE
================================ */
.cart-page {
  padding: 50px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* ==============================
   TITLE
================================ */
.cart-title {
  grid-column: 1 / -1;
  font-size: 24px;
  font-weight: 600;
}

/* ==============================
   EMPTY CART
================================ */
.empty-cart {
  grid-column: 1 / span 2;
  text-align: center;
  padding: 80px 20px;
  border: 1px dashed var(--border-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.empty-cart p {
  font-size: 18px;
}

.empty-cart img {
  width: 100px;
}

.empty-cart .btn {
  padding: 12px 28px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
}

/* ==============================
   CART ITEMS
================================ */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px;
  border: 1px solid var(--background-color);
  border-radius: 14px;
  background: var(--white);
  row-gap: 15px;
  flex-wrap: wrap;
}

/* ==============================
   PRODUCT IMAGE
================================ */
.cart-image img {
  width: 100px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

/* ==============================
   PRODUCT INFO
================================ */
.cart-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
}

.cart-info dl {
  font-size: 14px;
  color: var(--light-text-2);
}

.product-price {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

/* ==============================
   QUANTITY
================================ */
.cart-page {
  .cart-qty {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cart-qty .qty::-webkit-inner-spin-button,
  .cart-qty .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-qty .qty {
    -moz-appearance: textfield;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    width: 40px;
    outline: none;
  }

  .qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: 0.2s ease;
  }

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

  /* ==============================
  REMOVE
  ================================ */
  .cart-remove .remove {
    font-size: 16px;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 8px;
    background-color: var(--dark-red);
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
  }
}

/* ==============================
   CART ACTIONS
================================ */
.cart-actions {
  margin-top: 20px;
}

.cart-actions .btn {
  padding: 12px 28px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* ==============================
   CART TOTALS
================================ */
.cart-totals {
  padding: 30px;
  border-radius: 16px;
  background: var(--white-grey);
  border: 1px solid var(--border-color);
  height: fit-content;
}

.cart-totals h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.cart-totals p {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 12px;
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 20px;
  border: 1px solid var(--primary-color);
  transition: all 0.3s;
}

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

/* sidebar short cart */
#short-cart {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* ==============================
   CART ITEMS
================================ */
  .cart-items {
    gap: 10px;
  }

  .cart-item {
    display: grid;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--white);
    grid-template-columns: 70px 1fr 60px 20px;
    row-gap: 0;
  }

  /* ==============================
   PRODUCT INFO
================================ */
  .cart-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .product-name {
    font-size: 16px;
  }

  .cart-info dl {
    font-size: 12px;
  }

  .product-price {
    font-size: 14px;
  }

  /* ==============================
   QUANTITY
================================ */
  .cart-qty input.qty {
    width: 50px;
    padding: 6px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
  }

  /* ==============================
   REMOVE
================================ */
  .cart-remove .remove {
    font-size: 18px;
    transition: 0.2s;
  }

  /* ==============================
   CART ACTIONS
================================ */
  .cart-actions {
    margin-top: 20px;
  }

  .cart-actions .btn {
    padding: 8px 20px;
  }
}

/*
========================================================================================================================================================================================================= CHECKOUT CSS =========================================================================================================================================================================================================== */
/* ============================= */
/* CHECKOUT PAGE - MATCH ACCOUNT */
/* ============================= */

.woocommerce-checkout-page,
.wp-block-woocommerce-checkout {
  padding: 50px 0;
  background: var(--white);
}

/* Section Titles */
.wc-block-components-title,
.wc-block-components-checkout-step__title {
  font-size: 22px !important;
  font-weight: 600 !important;
  margin-bottom: 15px !important;
}

/* Inputs */
.wc-block-components-text-input input,
.wc-blocks-components-select__select,
.wc-block-components-textarea textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color) !important;
  font-size: 14px;
  transition: 0.3s ease;
}

.wc-block-components-text-input input:focus,
.wc-blocks-components-select__select:focus,
.wc-block-components-textarea textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* Floating labels fix spacing */
.wc-block-components-text-input label {
  font-size: 13px;
}

/* Payment Method */
.wc-block-components-radio-control__option {
  border: 1px solid var(--border-color);
  padding: 15px;
  border-radius: 8px;
}

.wc-block-components-radio-control__option-checked {
  border-color: var(--primary-color);
  background: rgba(0, 0, 0, 0.02);
}

/* Checkbox */
.wc-block-components-checkbox__label {
  font-size: 14px;
}

/* Place Order Button */
.wc-block-components-button {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 14px 25px !important;
  border-radius: 8px !important;
  font-weight: 600;
  border: none !important;
  transition: 0.3s ease;
}

.wc-block-components-button:hover {
  background: transparent !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
}

/* Return to cart link */
.wc-block-components-checkout-return-to-cart-button {
  color: var(--primary-color);
  font-weight: 500;
}

/* Order Summary Items */
.wc-block-components-order-summary-item {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

/* Totals */
.wc-block-components-totals-item__label {
  font-weight: 500;
}

.wc-block-components-totals-footer-item {
  font-size: 18px !important;
  font-weight: 600;
}

/*
========================================================================================================================================================================================================= ORDER RECEIVED / THANK YOU PAGE =========================================================================================================================================================================================================== */

.woocommerce-order {
  display: flex;
  flex-direction: column;
}

/* ============================= */
/* SUCCESS MESSAGE */
/* ============================= */
.woocommerce-notice--success {
  background: var(--bg-green);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 16px;
  border-radius: 12px;
  font-weight: 500;
  text-align: center;
}

/* ============================= */
/* ORDER OVERVIEW CARD */
/* ============================= */
.woocommerce-order-overview {
  list-style: none;
  padding: 20px;
  border-radius: 16px;
  background: var(--white-grey);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.woocommerce-order-overview li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.woocommerce-order-overview li:last-child {
  border-bottom: none;
}

.woocommerce-order-overview strong {
  font-weight: 600;
  color: var(--text-color);
}

/* ============================= */
/* ORDER DETAILS SECTION */
/* ============================= */
.woocommerce-order-details {
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border-color);
}

.woocommerce-order-details__title {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Table */
.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-table--order-details thead th {
  text-align: left;
  font-size: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.woocommerce-table--order-details tbody td {
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--white-grey);
}

.woocommerce-table--order-details a {
  color: var(--primary-color);
  font-weight: 500;
}

.product-quantity {
  font-size: 13px;
  color: var(--light-text-2);
  margin-left: 6px;
}

/* Totals */
.woocommerce-table--order-details tfoot th,
.woocommerce-table--order-details tfoot td {
  padding: 12px 0;
  font-size: 14px;
}

.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-table--order-details tfoot tr:last-child td {
  font-size: 16px;
  font-weight: 600;
}

/* ============================= */
/* BILLING ADDRESS */
/* ============================= */
.woocommerce-customer-details {
  padding: 20px;
  border-radius: 16px;
  background: var(--white-grey);
  border: 1px solid var(--border-color);
}

.woocommerce-column__title {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.woocommerce-customer-details address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: var(--light-text);
}

.woocommerce-customer-details--email {
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 500;
}

/* ============================= */
/* PAYMENT NOTE TEXT */
/* ============================= */
.woocommerce-order > p {
  font-size: 14px;
  color: var(--light-text);
  background: var(--white-grey);
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}
