/* ===========================
   ROOT VARIABLES
=========================== */

:root {

  /* COLORS */

  --primary-green: #1D391E;
  --secondary-green: #127748;

  --heading-dark: #1E1E1E;

  --top-header-bg: #FFF7B2;

  --body-bg: #FFFDF5;

  --white: #ffffff;

  --border-color: #E6DFC9;

  --text-muted: #000;

  --light-bg: #F7F3E8;


  /* TYPOGRAPHY */

  --heading-font: 'Libre Baskerville', serif;

  --body-font: 'Inter', sans-serif;

  --ui-font: 'Poppins', sans-serif;

  --highlight-font: 'Oswald', sans-serif;


  /* CONTAINER */

  --container-width: 1449px;


  /* RADIUS */

  --radius-sm: 8px;

  --radius-md: 12px;

  --radius-lg: 18px;

  --radius-xl: 24px;

  --radius-pill: 100px;


  /* TRANSITION */

  --transition: .35s ease;


  /* SHADOW */

  --card-shadow:
    0px 6px 20px rgba(0, 0, 0, .05);

}


/* ===========================
   RESET
=========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  background: var(--body-bg);

  font-family: var(--body-font);

  color: var(--heading-dark);

  overflow-x: hidden;

  font-size: 16px;

  line-height: 1.7;

}


img {

  max-width: 100%;

  display: block;

}


ul {
  list-style: none;
}

a {

  text-decoration: none;

  transition: var(--transition);

}

button {

  border: none;

  outline: none;

  cursor: pointer;

  transition: var(--transition);

}

input,
textarea,
select {

  outline: none;

  box-shadow: none;

}

.form-select:focus {
  outline: none;

  box-shadow: none;
}


/* ===========================
   CONTAINER
=========================== */

.custom-container {

  width: 100%;

  max-width: var(--container-width);

  margin: auto;

  padding-inline: 15px;

}


/* ===========================
   SECTION SPACING
=========================== */

.section-padding {

  padding: 50px 0;

}

.pb-100 {
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}


/* ===========================
   TYPOGRAPHY
=========================== */

h1,
h2,
h3,
h4,
h5,
h6 {

  font-family: var(--heading-font);

  color: var(--heading-dark);

  margin: 0;

}

h1 {

  font-size: 58px;

  line-height: 1.2;

}

h2 {

  font-size: 44px;

  line-height: 1.3;

}

h3 {

  font-size: 32px;

}

h4 {

  font-size: 24px;

}

p {

  color: var(--text-muted);

  margin-bottom: 0;

}


.heading-green {

  color: var(--primary-green);

}

.text-green {

  color: var(--secondary-green);

}

.ui-font {

  font-family: var(--ui-font);

}


/* ===========================
   BUTTONS
=========================== */

.theme-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  background: var(--secondary-green);

  color: var(--white);

  font-family: var(--ui-font);

  font-size: 15px;

  font-weight: 600;

  padding: 10px 30px;

  border-radius: 12px;

}

.theme-btn:hover {

  background: var(--primary-green);

  color: var(--white);

}


.outline-btn {

  border: 1px solid var(--secondary-green);

  background: transparent;

  color: var(--secondary-green);

}


/* ===========================
   SECTION TITLE
=========================== */

.section-subtitle {

  color: var(--secondary-green);

  font-family: var(--ui-font);

  font-weight: 600;

  margin-bottom: 12px;

}

.section-title {

  max-width: 700px;

  margin: auto;

}


/* ===========================
   CARD STYLE
=========================== */

.theme-card {

  background: var(--white);

  border-radius: var(--radius-md);

  box-shadow: var(--card-shadow);

  overflow: hidden;

}


/* ===========================
   FORM
=========================== */

.form-control {

  height: 40px;

  /* border-radius: var(--radius-pill); */

  border: 1px solid var(--border-color);

  /* padding-inline: 24px; */

}

.form-control:focus {

  box-shadow: none;

  border-color: var(--secondary-green);

}


/* ===========================
   IMAGE
=========================== */

.image-cover {

  width: 100%;

  height: 100%;

  /* object-fit: cover; */

}


/* ===========================
   SWIPER GLOBAL
=========================== */

.swiper-button-next,
.swiper-button-prev {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: #fff;

}

/* ==================================
TOP ANNOUNCEMENT BAR
================================== */

.top-announcement-bar {

  background: #FFFBDB;

  overflow: hidden;

  position: relative;

  padding: 15px 0;

  border-bottom: 1px solid rgba(29, 57, 30, .08);

}


.announcement-track {

  display: flex;

  width: max-content;

  animation: marqueeMove 30s linear infinite;

}


.announcement-group {

  display: flex;

  align-items: center;

  gap: 90px;

  padding-right: 90px;

}


.announcement-item {

  display: flex;

  align-items: center;

  gap: 10px;

  white-space: nowrap;

}


.announcement-item img {

  width: 18px;

  height: 18px;

  object-fit: contain;

  flex-shrink: 0;

}


.announcement-item span {

  font-family: 'Inter', sans-serif;

  font-size: 14px;

  color: #1E1E1E;

  font-weight: 400;

  line-height: 1;

}


@keyframes marqueeMove {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}


/* HOVER PAUSE */

.top-announcement-bar:hover .announcement-track {

  animation-play-state: paused;

}

/* ==========================
EARTHONA NAVBAR
========================== */

.earthona-header {

  background: #1D391E;

  position: relative;

  z-index: 100;

}


.earthona-navbar {

  display: flex;

  align-items: center;

  justify-content: space-between;

  min-height: 88px;

}


.earthona-logo {

  flex-shrink: 0;

}


.earthona-logo img {

  width: 150px;

}


.earthona-menu {

  display: flex;

  align-items: center;

  gap: 42px;

  margin-bottom: 0;

}


.menu-item a {

  color: #FFF;

  font-family: 'Poppins', sans-serif;

  font-size: 18px;

  font-weight: 500;

  display: flex;

  align-items: center;

  gap: 8px;

  transition: .3s;

}


.menu-item a:hover {

  color: #FFFBDB;

}


.has-dropdown i {

  font-size: 11px;

}


.header-actions {

  display: flex;

  align-items: center;

  gap: 10px;

}


.action-btn {

  width: 40px;

  height: 40px;

  background: rgba(255, 255, 255, .05);

  border: 1px solid rgba(255, 255, 255, .04);

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 8px;

  transition: .3s;

}


.action-btn img:hover {

  transform: scale(1.2);
  transition: all 0.6s;

}


.action-btn img {

  width: 40px;

  height: 40px;

  object-fit: cover;

}

.has-dropdown {

  position: relative;

}



/* DROPDOWN */

.category-dropdown {

  position: absolute;

  top: 100%;

  left: 50%;

  transform:

    translateX(-50%) translateY(20px);

  width: 720px;

  background: #fff;

  padding: 30px;

  border-radius: 28px;

  opacity: 0;

  visibility: hidden;

  transition: .35s;

  box-shadow:

    0 20px 50px rgba(0, 0, 0, .08);

  z-index: 999;

}



.has-dropdown:hover .category-dropdown {

  opacity: 1;

  visibility: visible;

  transform:

    translateX(-50%) translateY(10px);

}



/* GRID */

.dropdown-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;

}



/* ITEM */

.category-item {

  background: #F8F6EF;

  padding: 20px;

  border-radius: 20px;

  text-align: center;

  transition: .35s;

  display: block;

}



.category-item img {

  width: 40px;

  height: 40px;

  object-fit: contain;

  transition: .35s;

}



.category-item span {

  display: block;

  font-size: 15px;

  font-weight: 500;

  color: #1D391E;

}



.category-item:hover {

  background: #EEF4E4;

  transform: translateY(-5px);

}



.category-item:hover img {

  transform: scale(1.08);

}

.earthona-search-overlay {

  position: fixed;

  inset: 0;

  background:

    rgba(18, 30, 18, .88);

  backdrop-filter: blur(18px);

  z-index: 99999;

  display: flex;

  justify-content: center;

  align-items: center;

  opacity: 0;

  visibility: hidden;

  transition: .4s;

  padding: 30px;

}



.earthona-search-overlay.active {

  opacity: 1;

  visibility: visible;

}



.search-close {

  position: absolute;

  top: 40px;

  right: 50px;

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background:

    rgba(255, 255, 255, .12);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  cursor: pointer;

  font-size: 22px;

}



.search-wrapper {

  width: 100%;

  max-width: 850px;

  text-align: center;

}



.search-wrapper span {

  letter-spacing: 3px;

  font-size: 13px;

  color: #C7D9C5;

}



.search-wrapper h2 {

  font-size: 58px;

  margin: 20px 0 35px;

  color: #fff;

  font-family:

    'Libre Baskerville';

}



.search-box {

  height: 85px;

  background: #fff;

  border-radius: 70px;

  padding: 0 20px;

  display: flex;

  align-items: center;

  box-shadow:

    0 20px 40px rgba(0, 0, 0, .1);

}



.search-box input {

  flex: 1;

  border: none;

  font-size: 18px;

  padding: 0 25px;

}



.search-box button {

  width: 65px;

  height: 65px;

  border: none;

  border-radius: 50%;

  background: #127748;

  color: #fff;

}



.search-tags {

  display: flex;

  justify-content: center;

  gap: 15px;

  margin: 35px 0;

  flex-wrap: wrap;

}



.search-tags a {

  padding: 12px 22px;

  background:

    rgba(255, 255, 255, .10);

  border-radius: 40px;

  color: #fff;

}



.search-product-list {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 20px;

  margin-top: 30px;

}



.search-product {

  background:

    rgba(255, 255, 255, .08);

  padding: 18px;

  border-radius: 20px;

  display: flex;

  gap: 18px;

  text-align: left;

}



.search-product img {

  width: 90px;

  height: 90px;

  border-radius: 14px;

  object-fit: cover;

}



.search-product h5 {

  color: #fff;

  margin-bottom: 10px;

}



.search-product span {

  color: #D5E5D3;

}







/* ===========================
HERO SECTION
=========================== */

.hero-section {

  padding: 22px 0 60px;

  position: relative;

  background: #fff;

}


.hero-grid {

  display: grid;

  grid-template-columns: 1.45fr .95fr;

  gap: 10px;

}


.hero-left {

  height: auto;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}


.hero-right {

  display: flex;

  flex-direction: column;

  gap: 20px;

}


.hero-small-card {

  height: auto;

  overflow: hidden;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}


.hero-left img,
.hero-small-card img {

  transition: .5s;

}


/* .hero-left:hover img,
.hero-small-card:hover img {

  transform: scale(1.03);

} */


/* ARROWS */

.hero-prev,
.hero-next {

  width: 40px;

  height: 40px;

  background: #1D391E;

  border-radius: 50%;

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 20;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

}


.hero-prev {

  left: 10px;

}


.hero-next {

  right: 10px;

}


.hero-prev i,
.hero-next i {

  color: #fff;

  font-size: 22px;

}


/* PAGINATION */

.hero-pagination {

  display: flex;

  justify-content: center;

  margin-top: 40px;

}


.hero-pagination .swiper-pagination-bullet {

  width: 12px;

  height: 12px;

  background: linear-gradient(90deg, #008045 0%, #1D391E 100%);
  transition: all 0.2s;

  opacity: .9;

  margin: 0 6px !important;

}


.hero-pagination .swiper-pagination-bullet-active {

  width: 50px;
  height: 10px;
  border-radius: 50px;
  background: linear-gradient(90deg, #008045 0%, #1D391E 100%);
  transition: all 0.2s;
  opacity: 1;

}

/* ==========================
CATEGORY SECTION
========================== */

.category-section {

  background: #fff;

  position: relative;

}


.section-header {

  max-width: 850px;

  margin: auto auto 70px;

}


.category-title {

  font-size: 40px;

  color: #1D391E;

  margin-bottom: 20px;

}


.category-desc {

  font-size: 19px;

  color: #000000;

  max-width: 760px;

  margin: auto;

  line-height: 1.7;
  font-family: var(--ui-font);

}


.category-wrapper {

  position: relative;

}


.category-slider {

  padding-inline: 70px;

}


.category-card {

  background: #F5F0DB;

  border-radius: 12px;

  overflow: hidden;

  display: block;

  box-shadow:

    0 5px 10px rgba(0, 0, 0, .08);

}


.category-image {

  height: 150px;

  padding: 10px;

  display: flex;

  align-items: center;

  justify-content: center;

}


.category-image img {

  max-height: 110px;

  object-fit: contain;

}


.category-content {

  background: #fff;

  /* padding:8px; */

  text-align: center;

  font-family: 'Poppins';

  font-size: 15px;

  font-weight: 600;

  color: #000000;

}


/* ARROWS */

.category-prev,
.category-next {

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background: #1D391E;

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

}


.category-prev {

  left: 0;

}


.category-next {

  right: 0;

}


.category-prev i,
.category-next i {

  color: #fff;

  font-size: 22px;

}


/* ===========================
TRUST MARQUEE
=========================== */

.trust-marquee {

  background: #FFF7B2;

  overflow: hidden;

  padding: 15px 0;

  position: relative;

}


.trust-track {

  display: flex;

  width: max-content;

  animation: trustMove 35s linear infinite;

}


.trust-group {

  display: flex;

  align-items: center;

  gap: 80px;

  padding-right: 80px;

}


.trust-item {

  display: flex;

  align-items: center;

  gap: 12px;

  white-space: nowrap;

}


.trust-item i {

  color: #3D4F41;

  font-size: 20px;

  flex-shrink: 0;

}


.trust-item span {

  font-family: 'Poppins', sans-serif;

  font-size: 15px;

  font-weight: 600;

  color: #3D4F41;

  line-height: 1;

}


/* ANIMATION */

@keyframes trustMove {

  from {

    transform: translateX(0);

  }

  to {

    transform: translateX(-50%);

  }

}


/* PAUSE */

.trust-marquee:hover .trust-track {

  animation-play-state: paused;

}

/* ==========================
PRODUCT SECTION
========================== */

/* FILTER */

.product-filter button {

  transition: .3s;

}


.product-filter button.active {

  background: #1D391E;

  color: #fff;

}





.product-section {

  background: #F7F3DD;

}


.product-heading {

  max-width: 950px;

  margin: auto auto 40px;

}

.product-heading p {
  max-width: 700px;
  color: #000000;
  font-size: 17px;
  font-family: var(--ui-font);
  margin: auto;
  font-weight: 400;
}


.product-filter {
  display: flex;
  gap: 38px;
  align-items: center;
  padding: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.category-tab-card {
  width: 110px;
  height: 120px;
  background: #f5f5f5;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.3s ease;
}

.category-tab-card:hover {
  transform: translateY(-4px);
}

/* Active Card */
.category-tab-card.active {
  background: #f1e69c;
}

.icon-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2d4b2f;
  font-size: 48px;
}

.label {
  width: 100%;
  background: #173b17;
  color: #fff;
  text-align: center;
  padding: 8px 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

/* Smaller Icons */
.small-icon {
  font-size: 44px;
}



.product-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 25px;

}



.earthona-product-card {

  background: #fff;

  border-radius: 12px;

  overflow: hidden;

}

.product-hover-actions a {
  color: var(--primary-green);
}

.product-image-wrap {

  position: relative;

}



.product-image-wrap img {

  width: 100%;

  /* height: 320px; */

  object-fit: cover;

  border-radius: 20px;

}



.trending-badge {

  position: absolute;

  right: 0;

  top: 0;

  background: #FF8A00;

  color: #fff;

  padding: 6px 25px;

  font-size: 13px;

  border-bottom-left-radius: 10px;
  border-top-right-radius: 20px;

  font-family: var(--ui-font);

}



.product-hover-actions {

  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 5px;
  padding: 8px 20px;
  display: flex;
  gap: 20px;
  opacity: 0;
  transition: .3s;

}


.earthona-product-card:hover .product-hover-actions {

  opacity: 1;

}



.product-gallery {

  display: flex;

  gap: 8px;

  padding: 10px;

}


.product-gallery img {

  width: 48px;

  height: 48px;

  border-radius: 8px;

}



.product-content {

  padding: 16px;

}


.product-content h4 {

  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #000000;

}

.product-content p {
  font-size: 12px;
  color: #282525;
  line-height: 18px;
}


.product-rating {

  color: #FF8A00;

}

.product-rating span {
  color: #282525;
}


.price-row {

  display: flex;

  justify-content: space-between;

  margin: 15px 0;

}


.price {

  color: #127748;

  font-size: 22px;

  font-weight: 700;

  font-family: var(--highlight-font);

}

.cross_price {
  font-family: var(--highlight-font);
  color: #58625A;
  padding-left: 15px;
}


.discount {

  background: #FFF1AE;

  padding: 4px 20px;

  border-radius: 30px;

  font-family: var(--highlight-font);

  color: #3D4F41;

}


.product-content select {
  width: 100%;
  height: 34px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
}


.product-variant {

  width: 100%;

  height: 42px;

  background: #FFF1AE;

  border: none;

  padding: 0 15px;

  margin-bottom: 20px;

  border-radius: 8px;

}



.theme-btn {

  width: 100%;

  padding: 8px 20px;

  font-family: var(--ui-font);
  text-transform: capitalize;
  font-weight: 400;

}

/* ===========================
TRUST SECTION
=========================== */

.trust-section {

  padding: 60px 0;

  position: relative;

  overflow: hidden;

  background: #fff;

}

.trust-section .custom-container {
  max-width: 1320px;
}



.trust-shape {

  position: absolute;

  top: -40px;
  left: 20px;

  /* width:160px; */

}



.trust-heading {

  max-width: 1180px;

  margin: auto auto 100px;

}


.trust-heading h2 {

  font-size: 35px;

  color: #3D4F41;

  margin-bottom: 15px;

  font-weight: 700;

}


.trust-heading p {

  max-width: 970px;

  margin: auto;

  font-size: 16px;

  line-height: 1.8;
  color: #000000;
  font-weight: 400;

}



.trust-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 40px;

}



.farming-trust-item {

  text-align: center;

}



.trust-image {

  position: relative;

  margin-bottom: 35px;

}







.trust-image img {

  width: 180px;

  height: 180px;

  object-fit: contain;

  margin: auto;

  /* position:relative; */

  z-index: 2;

}



.farming-trust-item h4 {

  color: #3D4F41;

  font-family: var(--ui-font);

  font-size: 18px;

  font-weight: 700;

  margin-bottom: 14px;

}



.farming-trust-item p {

  font-size: 16px;
  color: #000000;
  line-height: 1.4;
  font-weight: 500;
}


.process-section {

  padding: 110px 0;

  position: relative;

  background:

    url('../images/craft-bg.png') center/cover;

  overflow: hidden;

}


/* .process-overlay{

    position:absolute;

    inset:0;

    background:
    rgba(12,55,23,.88);

} */


.process-section .custom-container {

  position: relative;

  z-index: 2;

}



.process-heading {

  max-width: 900px;

  margin: auto auto 40px;

}


.process-heading h2 {

  font-size: 38px;

  color: #fff;

  margin-bottom: 18px;

}


.process-heading p {

  color: #fff;

  padding: 0 120px;

}



.process-tabs {

  display: flex;

  justify-content: center;

  gap: 10px;

  margin-bottom: 45px;

}


.process-tab {

  min-width: 300px;

  height: 40px;

  border: none;

  border-radius: 6px;

  background: #127748;

  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;

}


.process-tab.active {

  background: #FFF3AF;

  color: #1D391E;

}



/* TIMELINE */

.step-slider {

  margin-bottom: 40px;

}


.step-item {

  color: #fff;

  text-align: center;

  position: relative;

  font-weight: 600;

}


.step-item:before {

  content: "";

  width: 100%;

  height: 3px;

  background: #fff;

  position: absolute;

  top: 45px;

  left: 0;

}


.step-item span {

  width: 20px;

  height: 20px;

  background: #fff;

  border-radius: 50%;

  display: block;

  margin: 10px auto 0;

}

.step-item span .active {
  background-color: var(--top-header-bg);
}



/* CARD */

.process-card {

  background: #fff;

  border-radius: 10px;

  overflow: hidden;

  padding: 12px;

}


.process-card img {

  width: 100%;

  height: auto;

  object-fit: cover;

  border-radius: 8px;

}


.process-card h4 {
  font-size: 17px;
  font-family: var(--ui-font);
  font-weight: 700;
  color: #000000;
  margin-top: 18px;
  margin-bottom: 5px;

}

.process-card p {
  color: #3D4F41;
  font-size: 13px;
  line-height: 20px;
}

.process-content {

  display: none;
  position: relative;
}

.process-content.active {

  display: block;


}

.process-nav {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 20px;

  position: absolute;
  top: 30px;
  left: -30px;
  width: 104%;
}


.process-prev,
.process-next,
.oil-prev,
.oil-next {

  width: 32px;

  height: 32px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  cursor: pointer;

}


/* EQUAL CARD */

.process-card-slider .swiper-slide {

  height: auto;

}


.process-card {

  height: 100%;

  display: flex;

  flex-direction: column;

}


.process-card img {

  /* height: 275px; */

  flex-shrink: 0;

}


.process-card p {

  flex-grow: 1;

}

.current-step .step-item {

  opacity: 1;

  color: #FFF3AF;

}


.current-step .step-item span {

  background: #FFF3AF;

  transform: scale(1);

}

/* ==========================
ABOUT SECTION
========================== */

.about-earthona {

  background: url('../images/about-bg.png') bottom center no-repeat, #ECF6F4;

  background-size: 100% auto;

  padding: 80px 0;

  height: 150vh;

  position: relative;

  overflow: hidden;

}

.about-earthona .custom-container {
  max-width: 1380px;
}



.about-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.about-content {

  padding-left: 40px;
}


.about-content h2 {

  font-size: 40px;

  font-weight: 700;

  color: #1D391E;

  margin-bottom: 28px;

}


.about-content p {

  font-size: 17px;

  line-height: 2;

  color: #000000;

  margin-bottom: 25px;

  font-weight: 400;

}



.about-content .theme-btn {
  border-radius: 5px;
  padding: 5px 20px;
  width: auto;
  font-family: var(--ui-font);
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 500;
}



/* LANDSCAPE */

.about-landscape {

  margin-top: 40px;

  position: relative;

}


.about-landscape img {

  width: 100%;

  display: block;

}

.video-product-section {

  padding: 80px 0;

  background: #fff;

}



.video-heading {

  margin-bottom: 55px;

}


.video-heading h2 {

  font-size: 35px;

  font-weight: 700;


  color: #1D391E;

  margin-bottom: 12px;

}

.video-heading p {
  color: #000000;
  font-size: 17px;
}



.video-wrapper {

  position: relative;

}



.video-card {

  position: relative;

}



.video-thumb {

  height: 450px;

  border-radius: 10px;

  overflow: hidden;

  position: relative;
  text-align: center;

}

.video-thumb iframe{
  height: 100%;
}


.video-thumb video {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.play-btn {

  width: 50px;

  height: 50px;

  border: none;

  border-radius: 50%;

  background: #fff;

  position: absolute;

  left: 50%;

  top: 50%;

  transform:
    translate(-50%, -50%);

}


.play-btn i {

  color: #E6BE35;

  font-size: 22px;

  display: flex;
  justify-content: center;
  align-items: center;

}



/* PRODUCT */

.video-product-box {

  background: #fff;

  margin: -70px auto 0;

  width: 85%;

  border-radius: 8px;

  padding: 12px;

  position: relative;

  z-index: 2;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .08);

}

.video-box-top-wrapper {
  display: flex;

  align-items: flex-start;

  gap: 12px;
}

.video-box-top-wrapper a i {
  color: #4D4D4D;
}


.product-left img {

  width: 42px;

}

.product-right {
  padding-top: 10px;
}

.product-right h4 {

  margin: 0;

  font-size: 22px;

}

.product-right span {

  font-size: 15px;
}


.quick-link {

  margin-left: auto;

}



/* CART */

.video-cart-row {

  width: 100%;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 45px;

  gap: 8px;

  margin-top: 8px;

}


.video-cart-row button {

  background: #127748;

  color: #fff;

  height: 30px;

  border: none;

  border-radius: 2px;

  font-size: 12px;

}


.video-cart-row a {

  background: #127748;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;
  border-radius: 2px;

}



/* NAV */

.video-prev,
.video-next {

  width: 40px;

  height: 40px;

  background: #1D391E;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  top: 45%;

  z-index: 20;

  color: var(--top-header-bg);

}


.video-prev {

  left: -40px;

}


.video-next {

  right: -40px;

}

/* ==========================
VIDEO BANNER
========================== */

.earthona-video-banner {

  height: 650px;

  position: relative;

  overflow: hidden;

}



.video-banner-image {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.video-overlay {

  position: absolute;

  inset: 0;

  background:

    linear-gradient(90deg,

      rgba(0, 0, 0, .72) 0%,

      rgba(0, 0, 0, .40) 35%,

      rgba(0, 0, 0, .05) 100%);

}



.earthona-video-banner .custom-container {

  height: 100%;

  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

}



.video-banner-content {

  padding-left: 50px;

  max-width: 660px;

}


.video-banner-content span {

  color: #fff;

  font-family: var(--ui-font);

  font-size: 28px;

  font-weight: 600;

  display: block;

  margin-bottom: 22px;

}


.video-banner-content h2 {

  color: #fff;

  font-size: 60px;

  line-height: 1.3;

  margin-bottom: 25px;

}



.video-banner-content p {

  color: #fff;

  line-height: 1.5;

}



/* PLAY BUTTON */

.video-play-btn {

  width: 82px;

  height: 82px;

  background: #fff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  left: 58%;

  top: 50%;

  transform:
    translate(-50%, -50%);

}


.video-play-btn i {

  color: #F2B800;

  font-size: 28px;

}

/* ==========================
TESTIMONIAL
========================== */

.testimonial-section {

  background: #F5F2D8;

  padding: 80px 0 0;

  position: relative;

  overflow: hidden;

}

.testimonial-section .custom-container {
  max-width: 1250px;
}



/* DECORATION */

.leaf-left {

  position: absolute;

  left: 0;

  top: 90px;

  width: 110px;

}


.leaf-right {

  position: absolute;

  right: 0;

  bottom: 130px;

  width: 110px;

}


.circle-shape {

  position: absolute;

  right: 0;

  top: 150px;

  /* width: 260px; */

}



/* TITLE */

.testimonial-heading {

  margin-bottom: 60px;

}

.testimonial-heading {
  width: 800px;
  margin: auto;
  margin-bottom: 50px;
}

.testimonial-heading h2 {

  font-size: 40px;

  font-weight: 700;

  color: #405343;

  margin-bottom: 12px;

}

.testimonial-heading p {
  font-size: 17px;
  color: #000000;
}



/* CARD */

.testimonial-card {

  background: #fff;

  padding: 28px;

  border-radius: 6px;

  position: relative;

  min-height: 215px;

  box-shadow:

    0 10px 24px rgba(0, 0, 0, .06);

}



/* SPEECH POINTER */

.testimonial-card:after {

  content: "";

  position: absolute;

  left: 55px;

  bottom: -28px;
  width: 50px;
  height: 30px;

  background: #fff;

  clip-path: polygon(0 0, 100% 0, 0 100%);

}



.testimonial-top {

  display: flex;

  gap: 18px;

  /* margin-bottom: 20px; */

  align-items: center;

}

.testimonial-avatar {
  height: 80px;
}

.testimonial-avatar img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.rating {

  color: #F4C53A;

  font-size: 20px;

}



.testimonial-content {

  color: #000000;

  line-height: 2;

}



/* NAV */

.testimonial-prev,
.testimonial-next {

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: #F2E48B;

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

}


.testimonial-prev {

  left: 50px;

}


.testimonial-next {

  right: 50px;

}



/* WAVE */

.testimonial-wave {

  margin-top: 100px;

}


.testimonial-wave svg {

  width: 100%;

  display: block;

}

/* ==========================
INSTA SECTION
========================== */

.insta-section {

  padding: 80px 0;

  background: #fff;

}


.insta-heading {

  max-width: 720px;

  margin: auto auto 55px;

}


.insta-heading h2 {

  font-size: 35px;

  font-weight: 700;

  color: #1D391E;

  margin-bottom: 15px;

}


.insta-heading p {
  font-size: 17px;
  color: #000000;
  line-height: 1.8;
  padding: 0 30px;
  font-weight: 400;

}



.insta-card {

  /* height: 430px; */

  border-radius: 8px;

  overflow: hidden;

  position: relative;

}



.insta-card img {

  transition: .5s;

}


.insta-card:hover img {

  transform: scale(1.02);

}

/* ==========================
CERTIFICATION SECTION
========================== */

.certification-section {

  padding: 60px 0;

  background: #fff;

}



.certification-heading {

  margin-bottom: 55px;

}


.certification-heading h2 {

  font-size: 35px;
  font-weight: 700;
  color: #405343;

}



/* ITEM */

.certification-item {

  height: auto;

  display: flex;

  align-items: center;

  justify-content: center;

}


.certification-item img {

  /* max-width: 120px; */

  /* max-height: 90px; */

  /* object-fit: contain; */

  transition: .35s;

}


.certification-item:hover img {

  transform: scale(1.08);

}

/* ==========================
FOOTER
========================== */

.earthona-footer {

  background:

    url('../images/footer-bg.png') bottom center no-repeat,

    #ffffff;

  background-size:
    100% auto;

  padding:
    40px 0 320px;

  position: relative;

  overflow: hidden;

}



/* LOGO */

.footer-logo {

  text-align: center;

  margin-bottom: 45px;

}


.footer-logo img {

  width: 320px;

  margin: auto;

}



/* CONTENT */

.footer-content p{

  max-width: 780px;

  margin: auto;

}


.footer-content h2 {

  font-size: 30px;

  font-weight: 700;

  color: #1D391E;

  margin-bottom: 20px;

}


.footer-content p {

  font-size: 18px;

  line-height: 1.8;

  margin-bottom: 15px;

  font-weight: 400;

  color: #000000;

}



/* NEWSLETTER */

.footer-newsletter {

  width: 100%;

  max-width: 500px;

  margin: auto auto 35px;

  position: relative;

}


.footer-newsletter input {

  width: 100%;

  height: 56px;

  background: #fff;

  border:

    1px solid #DADADA;

  border-radius: 6px;

  padding:
    0 65px 0 18px;

}


.footer-newsletter button {

  position: absolute;

  right: 15px;

  top: 50%;

  transform:
    translateY(-50%);

  background: none;

  border: none;

  color: #8E8E8E;

}



/* MENU */

.footer-menu {

  display: flex;

  justify-content: center;

  gap: 28px;

  margin-bottom: 35px;

}


.footer-dropdown {

  position: relative;

}


.footer-menu li:not(:last-child):after {

  content: "|";

  position: absolute;

  right: -15px;

  color: #1D391E;
  top: 0;

}


.footer-menu a {
  font-family: var(--heading-font);

  font-size: 18px;

  color: #1D391E;

  font-weight: 700;

}

.footer-menu {

  display: flex;

  gap: 40px;

  align-items: flex-start;

}



.footer-dropdown {

  position: relative;

}



.footer-dropdown>a {

  display: flex;

  align-items: center;

  gap: 8px;

}



.footer-submenu {

  padding: 0;

  margin: 15px 0 0;

  list-style: none;

  max-height: 0;

  overflow: hidden;

  transition: .35s;

  opacity: 0;

}



.footer-submenu li {

  margin-bottom: 10px;

}



.footer-submenu li a {

  font-size: 14px;

  color: #666;

  transition: .3s;

}



.footer-submenu li a:hover {

  color: #127748;

  padding-left: 5px;

}



/* ACTIVE */

.footer-dropdown.active .footer-submenu {

  max-height: 300px;

  opacity: 1;

}



/* ROTATE */

.footer-dropdown.active i {

  transform: rotate(180deg);

}



.footer-dropdown i {

  transition: .3s;

}




/* SOCIAL */

.footer-social {

  display: flex;

  justify-content: center;

  gap: 15px;

}


.footer-social a {

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: #1D391E;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

}

.footer-social a i {
  font-size: 25px;
}

/* ==========================
COPYRIGHT
========================== */

.earthona-copyright {

  background: #3F5D1B;

  padding: 8px 0;

  text-align: center;

  position: relative;

  z-index: 10;

}


.earthona-copyright p {

  margin: 0;

  color: #fff;

  font-size: 18px;

  font-weight: 500;

  font-family: 'Poppins';

  line-height: 1.2;
  padding: 8px 0;

}

.earthona-copyright a {
  color: var(--top-header-bg);
}


/* Shop page  */

.shop-page {

  background: #F7F3DD;

}



.shop-filter {

  background: #fff;

  padding: 25px;

  border-radius: 16px;

  position: sticky;

  top: 10px;

}


.filter-box {

  margin-bottom: 30px;

}


.filter-box h5 {

  margin-bottom: 15px;

  color: #1D391E;

}


.filter-box ul {

  padding: 0;

  margin: 0;

  list-style: none;

}


.filter-box li {

  margin-bottom: 12px;

}

/* RANGE */

.earthona-range {

  width: 100%;

  appearance: none;

  height: 6px;

  border-radius: 30px;

  background:

    linear-gradient(90deg,

      #127748 0%,

      #1D391E 100%);

  outline: none;

}


.earthona-range::-webkit-slider-thumb {

  appearance: none;

  width: 18px;

  height: 18px;

  border-radius: 50%;

  background: #127748;

  border: 3px solid #fff;

  cursor: pointer;

  box-shadow:

    0 0 0 4px rgba(18, 119, 72, .18);

}



/* RATING */

.rating-filter {

  padding: 0;

  margin: 0;

  list-style: none;

}


.rating-filter li {

  margin-bottom: 12px;

}


.rating-filter label {

  display: flex;

  align-items: center;

  gap: 10px;

  color: #E6AE00;

}


.rating-filter span {

  color: #666;

  font-size: 13px;

}



/* CHECKBOX */

.filter-box input[type="checkbox"] {

  accent-color: #127748;

  width: 16px;

  height: 16px;

}



.price-value {

  margin-top: 12px;

  color: #1D391E;

  font-weight: 600;

}



.shop-topbar {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 35px;

}



.shop-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 25px;

}



/* CARD */

/* .earthona-product-card{

display:block;

background:#fff;

border-radius:14px;

overflow:hidden;

transition:.4s;

} */



.product-image-wrap {

  position: relative;

  /* height:320px; */

  overflow: hidden;

}

.product-hover {

  position: absolute;

  inset: 0;

  width: 100%;

  height: auto;

  object-fit: contain;

  transition: .5s;

}


.product-hover {

  opacity: 0;

  /* transform:scale(1.08); */

}


.earthona-product-card:hover .product-hover {

  opacity: 1;

  /* transform:scale(1); */

}


.earthona-product-card:hover .product-main {

  opacity: 0;

}



/* ACTION */

/* .product-hover-actions{

position:absolute;

left:50%;

bottom:20px;

transform:translateX(-50%);

background:#fff;

padding:12px 20px;

border-radius:50px;

display:flex;

gap:20px;

opacity:0;

transition:.35s;

}


.earthona-product-card:hover
.product-hover-actions{

opacity:1;

} */



/* PAGINATION */

.shop-pagination .pagination {

  display: flex;

  justify-content: center;

  gap: 10px;

  margin-top: 60px;

}


.shop-pagination .page-link {

  width: 45px;

  height: 45px;

  border-radius: 50%;

  background: #fff;

  color: var(--primary-green);

  display: flex;

  align-items: center;

  justify-content: center;
  border-color: #127748;

}

.shop-pagination .flex-sm-fill{
  justify-content: center !important;
}




.pagination .active span{

  background: #127748;

  color: #fff;

}

.pagination .disabled span{
  background-color:#fff !important;
}

.pagination .disabled{
  background-color: unset;
}

.shop-pagination .small{
  display: none;
}

.page-item:first-child .page-link{
  border-radius: 50px;
}
.page-item:last-child .page-link{
  border-radius: 50px;
}


/* OVERLAY */

.cart-overlay {

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, .45);

  opacity: 0;

  visibility: hidden;

  z-index: 9998;

  transition: .4s;

}



.cart-overlay.active {

  opacity: 1;

  visibility: visible;

}



/* CART */

.earthona-side-cart {

  position: fixed;

  top: 0;

  right: -450px;

  width: 430px;

  height: 100vh;

  background: #fff;

  z-index: 9999;

  display: flex;

  flex-direction: column;

  transition: .45s;

  box-shadow: -10px 0 40px rgba(0, 0, 0, .12);

}



.earthona-side-cart.active {

  right: 0;

}



/* HEADER */

.cart-header {

  padding: 24px;

  display: flex;

  justify-content: space-between;

  border-bottom:

    1px solid #eee;

}



.close-cart {

  background: none;

  border: none;

}



/* SHIPPING */

.shipping-progress {

  padding: 10px 20px;

  background: #F7F3DD;

}

.shipping-progress p {
  color: #000000;
  font-weight: 600;
}


.progress-line {

  height: 8px;

  background: #fff;

  border-radius: 30px;


}


.progress-line span {

  width: 60%;

  height: 100%;

  display: block;

  background: #127748;

  border-radius: 30px;

}



/* PRODUCT */

.cart-items {

  padding: 20px;

  flex: 1;

  overflow: auto;

}


.cart-product {

  display: flex;

  gap: 15px;

  margin-bottom: 25px;

}


.cart-image {

  width: 130px;

  height: 120px;

  border-radius: 10px;

  overflow: hidden;

}


.cart-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}

.cart-content h5 {
  font-size: 15px;
}

.cart-content span {
  font-weight: 500;
  font-family: var(--highlight-font);
  font-size: 18px;
  color: var(--primary-green);
}



.qty-box {

  display: flex;
  width: fit-content;
  margin-top: 10px;
  border: 1px solid #127748;

}


.qty-box button {

  width: 50px;

  height: 32px;

  background: #F7F3DD;
  border: none;

}



.qty-box input {

  width: 30px;

  text-align: center;
  border: none;

}

.remove-cart {
  color: var(--primary-green);
}



/* RELATED */

.related-title {

  padding: 0 20px;

  font-weight: 600;

  margin-bottom: 15px;

}


.related-card {

  background: #F7F3DD;

  padding: 10px;

  border-radius: 10px;

  width: 90%;
  margin: auto;
  margin-bottom: 10px;

}


.related-card img {

  height: auto;

  width: 100%;

  object-fit: cover;

  border-radius: 8px;

}

.related-card h6 {
  font-size: 14px;
}

.related-card span {
  font-family: var(--highlight-font);
  font-weight: 700;
  color: var(--primary-green);
}

/* FOOTER */

.cart-footer {

  padding: 20px;

  border-top: 1px solid #eee;

  background: #fff;

}


.subtotal {

  display: flex;

  justify-content: space-between;

  margin-bottom: 18px;

  font-family: var(--highlight-font);
  font-weight: 700;

}

.checkout-page {

  background: #F7F3DD;

}



/* STEP */

.checkout-steps {

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 60px;

}


.step {

  display: flex;

  align-items: center;

  gap: 10px;

  font-weight: 600;

}


.step span {

  width: 40px;

  height: 40px;

  background: #fff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

}


.step.active span {

  background: #127748;

  color: #fff;

}


.line {

  width: 80px;

  height: 2px;

  background: #ddd;

  margin: 0 15px;

}



/* BOX */

.checkout-box {

  background: #fff;

  padding: 30px;

  border-radius: 16px;

  margin-bottom: 25px;

}


.checkout-box h3 {

  margin-bottom: 25px;

  color: #1D391E;

}



/* OPTION */

.checkout-option {

  display: flex;

  justify-content: space-between;

  padding: 16px;

  border:

    1px solid #eee;

  border-radius: 10px;

  margin-bottom: 15px;

}



/* SUMMARY */

.order-summary {

  background: #fff;

  padding: 25px;

  border-radius: 16px;

  position: sticky;

  top: 120px;

}


.summary-product {

  display: flex;

  gap: 15px;

  margin-bottom: 25px;

}


.summary-product img {

  width: 80px;

  height: 80px;

  border-radius: 10px;

  object-fit: cover;

}



/* COUPON */

.coupon-box {

  display: flex;

  gap: 10px;

  margin-bottom: 25px;

}


.coupon-box button {

  background: #127748;

  color: #fff;

  padding: 0 20px;

}



/* TOTAL */

.summary-total {

  padding: 0;

  list-style: none;

}


.summary-total li {

  display: flex;

  justify-content: space-between;

  padding: 4px 0;

}


.grand {

  font-size: 20px;

  font-weight: 700;

  color: #127748;

}



.checkout-trust {

  background: #F7F3DD;

  padding: 20px;

  border-radius: 10px;

  margin: 25px 0;

  line-height: 2;

}

.checkout-box .form-control {
  height: auto;
  padding-inline: 10px;
}

.checkout-box input {
  height: 50px !important;
}

.checkout-box select {
  height: 50px !important;
}

input[type="radio"] {
  accent-color: var(--primary-green);
}


.wishlist-page {

  background: #FAF8F2;

}



.wishlist-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}



/* CARD */

.wishlist-card {
  background: #fff;
  padding: 22px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 15px;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
  border: 1px solid #EAE5D8;
  width: 49%;
}

.wishlist-image {
  /* height: 250px; */
  border-radius: 24px;
  overflow: hidden;
}

.wishlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */

.wishlist-content h2 {
  font-size: 25px;
  color: #1D391E;
  margin-bottom: 8px;
}

.wishlist-subtitle {
  display: block;
  font-size: 18px;
  margin-bottom: 22px;
  color: #000;
}

.wishlist-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 15px;

}

/* STOCK */

.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 22px;
  border-radius: 30px;
  font-size: 16px;
  margin-bottom: 20px;

}

.stock-pill i {
  font-size: 10px;
}

.in-stock {
  background: #EEF4E4;
  color: var(--primary-green);
}

.out-stock {
  background: #FCECEC;
  color: #c80404;

}

/* PRICE */
.wishlist-price {
  font-size: 25px;
  font-weight: 700;
  color: #17391E;
  font-family: var(--highlight-font);
}

.wishlist-price del{
  font-size: 17px;
  color: #58625A;
}

/* ACTION */
.wishlist-action {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  height: 100%;
  align-items: flex-end;

}

.wishlist-remove {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #FCE8E4;
  color: #D8533C;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.wishlist-action .first_form{
  width: 85%;
}

.move-cart-btn {
  width: 70%;
  height: 45px;
  border-radius: 50px;
  background: linear-gradient(90deg, #16351C, #0D5A30);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.move-cart-btn:hover{
  background: linear-gradient(90deg, #0D5A30, #16351C);
  transition: all 0.4s;
}


.disabled {

  background: #A9BC8D;

}



/* TRUST */

.wishlist-trust {

  margin-top: 35px;

  background: #fff;

  padding: 35px;

  border-radius: 20px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  text-align: center;

  box-shadow:

    0 8px 20px rgba(0, 0, 0, .05);

}



.wishlist-trust strong {

  display: block;

  margin: 10px 0;

}

.wishlist-trust i {
  font-size: 30px;
  color: #008045;
}



.wishlist-trust span {

  display: block;

  color: #000;

}

/* login page style  */
.earthona-auth-page {

  min-height: 70vh;

  background: #F7F3DD;

  padding: 50px;

}



.auth-wrapper {

  background: #fff;

  border-radius: 35px;

  overflow: hidden;

  display: grid;

  grid-template-columns: 1.1fr 1fr;

  min-height: 620px;

  box-shadow: 0 25px 50px rgba(0, 0, 0, .08);

}



/* LEFT */

.auth-wrapper {

  background: url('../images/login-bg.webp') center/cover;
  position: relative;
  background-repeat: no-repeat;

}

.auth-content p {
  color: #000;
}


.auth-logo {

  width: 180px;

  margin-bottom: 30px;

}


.auth-content h2 {

  font-size: 35px;

  margin-bottom: 20px;

}



/* RIGHT */

.auth-right {

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 30px 60px;

}



.auth-card {

  width: 100%;

  max-width: 520px;

  padding: 30px 50px;

  background: rgba(255, 255, 255, .70);

  backdrop-filter: blur(20px);

  border-radius: 30px;

  border:

    1px solid rgba(0, 0, 0, .05);

}

.auth-card a {
  color: #008045;
}



/* TABS */

.auth-tabs {

  display: flex;

  background: #F7F3DD;

  padding: 6px;

  border-radius: 60px;

  margin: 35px 0;

}


.auth-tab {

  flex: 1;

  height: 50px;

  border: none;

  background: none;

  border-radius: 50px;

}


.auth-tab.active {

  background: #16351C;

  color: #fff;

}



/* INPUT */

.input-group-auth {

  height: 50px;

  background: #fff;

  border-radius: 16px;

  display: flex;

  align-items: center;

  padding: 0 22px;

  margin-bottom: 20px;

  border:

    1px solid #ECECEC;

}


.input-group-auth input {

  flex: 1;

  border: none;

  margin-left: 15px;

}



/* SOCIAL */

.social-btn {

  height: 62px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 15px;

  border-radius: 14px;

  margin-bottom: 15px;

  background: #fff;

  border:

    1px solid #eee;

}



.auth-content-box {

  display: none;

}


.auth-content-box.active {

  display: block;

}



.auth-footer {

  margin-top: 30px;

  text-align: center;

}

/* REGISTER */

.register-page .auth-card {

  max-width: 100%;

}



/* PASSWORD STRENGTH */

.password-strength {

  display: flex;

  gap: 8px;

  margin: -5px 0 18px;

}


.password-strength span {

  height: 6px;

  flex: 1;

  border-radius: 30px;

  background: #E5E5E5;

}


.password-strength span:nth-child(1) {

  background: #F44336;

}


.password-strength span:nth-child(2) {

  background: #FFB300;

}


.password-strength span:nth-child(3) {

  background: #127748;

}



/* TERMS */

.terms-check {

  display: flex;

  gap: 10px;

  margin: 20px 0;

  font-size: 14px;

}


.terms-check input {

  accent-color: #127748;

}



/* SOCIAL */

.social-btn {

  height: 62px;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 15px;

  border-radius: 14px;

  margin-bottom: 15px;

  border:

    1px solid #E8E8E8;

}

/* SOCIAL */

.social-btn {

  height: 62px;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 15px;

  border-radius: 14px;

  margin-bottom: 15px;

  border:

    1px solid #E8E8E8;

  font-weight: 500;

  transition: .35s;

}


.social-btn i {

  font-size: 20px;

  transition: .35s;

}



/* GOOGLE */

.social-btn.google i {

  color: #DB4437;

}



/* FACEBOOK */

.social-btn.facebook i {

  color: #1877F2;

}



/* APPLE */

.social-btn.apple i {

  color: #000;

}



/* HOVER */

.social-btn:hover {

  transform: translateY(-3px);

  box-shadow:

    0 12px 24px rgba(0, 0, 0, .06);

}


.social-btn.google:hover {

  border-color: #DB4437;

  background:

    rgba(219, 68, 55, .04);

}


.social-btn.facebook:hover {

  border-color: #1877F2;

  background:

    rgba(24, 119, 242, .04);

}


.social-btn.apple:hover {

  border-color: #000;

  background:

    rgba(0, 0, 0, .03);

}

/* blog page style  */
.earthona-blog-page {

  background: #FAF8F2;

}



.blog-wrapper {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 15px;

}


/* CARD */

.blog-card {

  background: #fff;

  padding: 22px;

  border-radius: 30px;

  display: grid;

  grid-template-columns: 320px 1fr;

  gap: 15px;

  align-items: center;

  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

  border: 1px solid #E9E3D5;

  transition: .35s;

  /* width: 50%; */

}


.blog-card:hover {

  transform: translateY(-5px);

}



/* IMAGE */

.blog-image {

  height: 300px;

  border-radius: 28px;

  overflow: hidden;

  display: block;

}


.blog-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .5s;

}


.blog-card:hover .blog-image img {

  transform: scale(1.08);

}



/* DATE */

.blog-date {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 5px 24px;

  background: #EEF4E4;

  color: #284D12;

  border-radius: 40px;

  font-size: 14px;

  margin-bottom: 15px;

}




/* TITLE */

.blog-content h2 {

  font-size: 20px;

  line-height: 1.4;

  color: #1D391E;

  margin-bottom: 10px;

}



/* CATEGORY */

.blog-category {

  font-size: 18px;

  color: var(--primary-green);

  margin-bottom: 10px;

}



/* CONTENT */

.blog-content p {

  font-size: 16px;

  line-height: 1.4;

  margin-bottom: 20px;

  color: #000;

}



/* BUTTON */

.blog-read-btn {

  width: 150px;

  height: 35px;

  background: linear-gradient(90deg, #16351C, #0B5A31);

  border-radius: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  font-size: 16px;

  font-weight: 600;

  color: #fff;

}


/* signle blog style  */
.earthona-blog-details {
  background: #FAF8F2;

}

/* LEFT */

.blog-detail-card {

  background: #fff;

  padding: 20px;

  border-radius: 25px;

}


.blog-detail-image {

  height: auto;

  border-radius: 22px;

  overflow: hidden;

  margin-bottom: 30px;

}


.blog-meta {

  display: flex;

  gap: 20px;

  margin-bottom: 20px;

  color: #000;

}


.blog-detail-card h1 {

  font-size: 30px;

  color: #1D391E;

  margin-bottom: 30px;

}

.blog-detail-card h3 {
  font-size: 23px;
  color: var(--primary-green);
  margin-bottom: 15px;
  line-height: 1.4;
}



.blog-content-area p {

  font-size: 16px;

  line-height: 1.8;

  margin-bottom: 25px;

  color: #000;

}



blockquote {

  background: #F7F3DD;

  padding: 35px;

  border-left:

    5px solid #127748;

  border-radius: 16px;

  font-size: 24px;

  margin: 35px 0;

  font-style: italic;

}



.content-image {

  height: 350px;

  overflow: hidden;

  border-radius: 20px;

  margin: 35px 0;

}


.content-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



/* FOOTER */

.blog-footer {

  display: flex;

  justify-content: space-between;

  margin-top: 35px;

}


.blog-tags a {

  background: #EEF4E4;

  padding: 10px 18px;

  border-radius: 30px;

  margin-right: 10px;

}



/* SIDEBAR */

.blog-sidebar {

  position: sticky;

  top: 120px;

  display: flex;

  flex-direction: column;

  gap: 25px;

}


.sidebar-box {

  background: #fff;

  padding: 25px;

  border-radius: 20px;

}


.blog-search {

  position: relative;

}


.blog-search input {

  width: 100%;

  height: 60px;

  border:

    1px solid #eee;

  border-radius: 15px;

  padding: 0 60px 0 20px;

}


.blog-search button {

  position: absolute;

  right: 20px;

  top: 50%;

  transform: translateY(-50%);

  border: none;

  background: none;

}



.category-list {

  padding: 0;

  list-style: none;

}


.category-list li {

  display: flex;

  justify-content: space-between;

  padding: 15px 0;

  border-bottom:

    1px solid #eee;

}



.recent-blog {

  display: flex;

  gap: 15px;

  margin-bottom: 20px;

}


.recent-blog img {

  width: 90px;

  height: 90px;

  border-radius: 12px;

  object-fit: cover;

}

.sidebar-box h4 {
  margin-bottom: 15px;
  font-size: 22px;
  color: var(--primary-green);
}

.sidebar-box h5 {
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--primary-green);
}


/* contact us page style  */
.earthona-contact-page {

  background: #F8F5E9;

}



/* HEADING */

.contact-heading {

  max-width: 750px;

  margin: auto auto 70px;

}


.contact-heading span {

  color: #127748;

  font-weight: 600;

}


.contact-heading h1 {

  font-size: 35px;

  color: #1D391E;

  margin: 20px 0;

}

.contact-heading p {
  color: #000;
}



/* CARD */

.contact-cards {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 25px;

  margin-bottom: 60px;

}


.contact-card {

  background: #fff;

  padding: 35px;

  border-radius: 24px;

  text-align: center;

  box-shadow:

    0 10px 25px rgba(0, 0, 0, .05);

}


.contact-card .icon {

  width: 80px;

  height: 80px;

  background: #EEF4E4;

  margin: auto auto 20px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #127748;

  font-size: 28px;

}

.contact-card h4 {
  font-size: 22px;
  color: var(--primary-green);
}

.contact-card p {
  color: #000;
}



/* CONTACT */

.contact-wrapper {

  background: #fff;

  padding: 35px;

  border-radius: 28px;

  margin-bottom: 50px;

}



.contact-form-box h2 {
  font-size: 35px;
  margin-bottom: 15px;
  color: #1D391E;

}

.contact-form-box p {
  margin-bottom: 20px;
  color: #000;
}

.contact-form-box .form-control {

  height: 45px;

  border-radius: 10px;

  border: 1px solid #E9E9E9;

}


textarea.form-control {

  height: auto !important;

}



/* RIGHT */

.contact-info-box {

  background: #16351C;

  padding: 35px;

  border-radius: 24px;

  color: #fff;

  height: 100%;

}


.contact-social {

  display: flex;

  gap: 12px;

  margin: 30px 0;

}


.contact-social a {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .12);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

}

.contact-info-box h3,
h5 {
  font-size: 22px;
  color: #fff;
}

.contact-info-box p {
  color: #fff;
}



/* MAP */

.contact-map {

  height: 420px;

  overflow: hidden;

  border-radius: 28px;

  margin-bottom: 50px;

}


.contact-map iframe {

  width: 100%;

  height: 100%;

  border: none;

}



/* TRUST */

.contact-trust {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;

  background: #fff;

  padding: 30px;

  border-radius: 24px;

  text-align: center;

}

.contact-trust i {
  font-size: 25px;
  color: #0B5A31;
}

.main-product-image {

  border-radius: 28px;

  overflow: hidden;

  margin-bottom: 25px;

}



.product-gallery-slider img {


  border-radius: 18px;

  cursor: pointer;

}



.variant {

  display: flex;

  justify-content: space-between;

  padding: 18px;

  border: 1px solid #E7E7E7;

  border-radius: 18px;

  margin-bottom: 15px;

  cursor: pointer;

}



.variant.active {

  background: #EEF4E4;

  border-color: #127748;

}



.qty-cart-wrap {

  display: flex;

  gap: 15px;

  margin-top: 30px;

}



.buy-btn {

  background: #1D391E;

  color: #fff;

  border: none;

  padding: 0 35px;

  border-radius: 50px;

}



.attribute-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

}



.attribute-grid div {

  background: #fff;

  padding: 35px;

  border-radius: 20px;

  text-align: center;

}



.story-image {

  width: 100%;

  border-radius: 28px;

}



.content-box,

.review-form {

  background: #fff;

  padding: 40px;

  border-radius: 24px;

}

.highlight-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

  margin-top: 70px;

}


.highlight-card {

  background: #fff;

  padding: 35px 20px;

  border-radius: 24px;

  text-align: center;

  box-shadow:

    0 8px 24px rgba(0, 0, 0, .05);

}


.highlight-card .icon {

  width: 70px;

  height: 70px;

  background: #EEF4E4;

  border-radius: 50%;

  margin: auto auto 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 26px;

}

.story-img {

  width: 100%;

  height: 500px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow:

    0 15px 40px rgba(0, 0, 0, .08);

}

.review-card {

  background: #fff;

  padding: 50px;

  border-radius: 30px;

  box-shadow:

    0 10px 25px rgba(0, 0, 0, .05);

}

/* ==========================
PRODUCT DETAIL PAGE
========================== */

.earthona-product-page {

  background: #F8F6EF;

}


/* HERO */

.product-gallery-wrap {

  background: #fff;

  padding: 20px;

  border-radius: 24px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, .05);

}


.main-product-image {

  overflow: hidden;

  border-radius: 20px;

  margin-bottom: 18px;

  height: 550px;
  width: 550px;
  margin: auto;

}


.main-product-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .4s;

}


.product-gallery-thumb {

  width: 100px;
  height: 100px;

  border-radius: 12px;

  object-fit: cover;

  cursor: pointer;

  border: 2px solid transparent;

  transition: .3s;

}


.product-gallery-thumb:hover {

  border-color: #127748;

}



/* PRODUCT INFO */

.product-category {

  font-size: 16px;

  color: #008045;

  display: block;

  margin-bottom: 8px;

}


.product-info-wrap h1 {

  font-size: 25px;

  line-height: 1.2;

  font-weight: 700;

  color: #1D391E;

  margin-bottom: 15px;

  font-family: 'Libre Baskerville';

}

.product-info-wrap p {
  color: #000;
}


.rating-box {

  font-size: 14px;

  margin-bottom: 18px;

  color: #E8A317;

}


.rating-box span {

  color: #000;

  margin-left: 10px;

}


.price-box {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 25px;

}


.price-box #currentPrice{

  font-size: 28px;

  font-weight: 700;

  color: #127748;
  background-color: transparent;
  padding: 0;

}


.price-box del {

  font-size: 16px;

  color: #888;

  font-weight: 400;

}


.price-box span {

  font-size: 13px;

  background: #EEF4E4;

  padding: 6px 12px;

  border-radius: 20px;

  color: #127748;

}



/* VARIANTS */

.variant-wrap {

  margin-bottom: 25px;

}

.variation_box {
  display: grid;

  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.variant-wrap h5 {

  font-size: 16px;

  margin-bottom: 15px;

  color: #1D391E;

}


.variant {

  padding: 8px 18px;

  border: 1px solid #E4E4E4;

  border-radius: 8px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 12px;

  cursor: pointer;

  transition: .3s;

  font-size: 14px;
  /* width: 50%; */

}


.variant span {

  font-size: 12px;

  color: #000;

}


.variant.active {

  background: #EEF4E4;

  border-color: #127748;

}



/* CART */

.qty-cart-wrap {

  display: flex;

  gap: 12px;

  margin-top: 25px;
  align-items: center;

}


.qty-cart-wrap .qty-box {

  width: 120px;

  height: 48px;

  border: 1px solid #ddd;

  border-radius: 12px;

  display: flex;

  align-items: center;

  overflow: hidden;
  margin-top: 0;

}


.qty-box button {

  width: 35px;

  height: 100%;

  border: none;

  background: none;

  font-size: 16px;

}


.qty-box input {

  flex: 1;

  border: none;

  text-align: center;

  font-size: 15px;

}

.qty-cart-wrap .theme-btn {
  width: auto;
  height: 48px;
}

.buy-btn {

  height: 48px;

  padding: 0 25px;

  background: #1D391E;

  border: none;

  border-radius: 10px;

  color: #fff;

  font-size: 14px;

}

.product_certification_box {

  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 10px;

  padding-top: 40px;

}

/* .certification_img{
  height: 200px;
} */

.earthona-product-hero .swiper-wrapper {
  justify-content: center;
}


/* ATTRIBUTE */

.highlight-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  margin: 70px 0;

}


.highlight-card {

  background: #fff;

  padding: 28px 20px;

  border-radius: 20px;

  text-align: center;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .05);

}


.highlight-card .icon {

  width: 60px;

  height: 60px;

  background: #EEF4E4;

  border-radius: 50%;

  margin: auto auto 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

}


.highlight-card h5 {

  font-size: 17px;

  margin-bottom: 8px;

  color: #1D391E;

}


.highlight-card p {

  font-size: 13px;

  color: #777;

  margin: 0;

}



/* DESCRIPTION */

.product-desc-card {

  background: #fff;

  padding: 45px;

  border-radius: 24px;

  margin-bottom: 20px;

}


.product-desc-card .product-detail-span {

  font-size: 13px;

  letter-spacing: 2px;

  color: #127748;

  text-transform: uppercase;

}


.product-desc-card h2 {

  font-size: 34px;

  margin: 15px 0;

  color: #1D391E;

  font-family: 'Libre Baskerville';

}


.product-desc-card p {

  font-size: 16px;

  line-height: 1.9;

  color: #000;

}



/* STORY */

.story-img {

  width: 100%;

  height: 450px;

  object-fit: cover;

  border-radius: 24px;

}


.earthona-story span {

  font-size: 13px;

  letter-spacing: 2px;

  color: #127748;

  text-transform: uppercase;

}


.earthona-story h2 {

  font-size: 36px;

  margin: 15px 0 20px;

  color: #1D391E;

}


.earthona-story p {

  font-size: 16px;

  line-height: 1.9;

  color: #666;

}


.earthona-story ul {

  padding: 0;

  list-style: none;

  margin-top: 25px;

}


.earthona-story li {

  margin-bottom: 12px;

  font-size: 15px;

}



/* CERTIFICATION */

.cert-section {

  margin: 70px 0;

}


.cert-section h2 {

  font-size: 34px;

  margin-bottom: 35px;

  text-align: center;

}


.cert-slider img {

  height: 90px;

  width: auto;

  margin: auto;

}



/* REVIEW */

.review-card {

  background: #fff;

  padding: 45px;

  border-radius: 24px;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .05);

}


.review-card h2 {

  font-size: 32px;

  margin-bottom: 30px;

  color: #1D391E;

}


.review-card .form-control {

  height: 55px;

  border-radius: 12px;

  border: 1px solid #ddd;

  font-size: 14px;

}


.review-card textarea.form-control {

  height: 140px;

  padding-top: 15px;

}



/* RELATED */

.related-product-section {
  background: #F7F3DD;
  margin-top: 70px;
  padding: 80px 0;

}


.related-product-section h2 {

  font-size: 34px;

  margin-bottom: 35px;

  color: #1D391E;

}



/* RESPONSIVE */

@media(max-width:991px) {

  .product-info-wrap h1 {

    font-size: 34px;

  }


  .highlight-grid {

    grid-template-columns: repeat(2, 1fr);

  }


  .story-img {

    height: 350px;

  }

}


@media(max-width:767px) {

  .main-product-image {

    height: 350px;

  }


  .highlight-grid {

    grid-template-columns: 1fr;

  }


  .product-info-wrap h1 {

    font-size: 28px;

  }


  .product-desc-card h2,
  .earthona-story h2,
  .review-card h2 {

    font-size: 28px;

  }


  .qty-cart-wrap {

    flex-wrap: wrap;

  }

}


.gallery-thumb {

  width: 100%;

  height: 90px;

  object-fit: cover;

  border-radius: 12px;

  cursor: pointer;

  border: 2px solid transparent;

  transition: .3s;

}


.gallery-thumb.active {

  border-color: #127748;

}



.related-nav {

  display: flex;

  gap: 12px;

}


.related-prev,
.related-next {

  width: 50px;

  height: 50px;

  background: #16351C;

  color: #fff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

}

.relatedSwiper {

  overflow: hidden;

  padding: 10px 0;

}


.relatedSwiper .swiper-slide {

  height: auto;

}



.related-nav {

  display: flex;

  gap: 12px;

  margin-bottom: 25px;

}


.related-prev,
.related-next {

  width: 48px;

  height: 48px;

  background: #16351C;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  cursor: pointer;

}



.relatedSwiper .product-card {

  height: 100%;

}

.gallerySwiper {

  overflow: hidden;

  margin-top: 15px;

}


.gallery-thumb {

  width: 100%;

  height: 80px;

  object-fit: cover;

  border-radius: 10px;

  cursor: pointer;

  border: 2px solid transparent;

  transition: .3s;

}


.gallery-thumb.active {

  border-color: #127748;

}

.product-gallery-wrap {

  display: flex;

  gap: 20px;

  align-items: flex-start;

}



.gallery-left {

  width: 100px;

  flex-shrink: 0;

}



.gallerySwiper {

  height: 600px;

  overflow: hidden;
  padding: 20px 0;

}



.product-gallery-thumb {

  width: 100%;

  height: 100px;

  object-fit: cover;

  border-radius: 14px;

  cursor: pointer;

  border: 2px solid transparent;

  transition: .3s;

  background: #fff;

  padding: 5px;

}



.product-gallery-thumb.active {

  border-color: #127748;

}



.gallery-right {

  flex: 1;

}



.main-product-image {

  height: 600px;

  background: #fff;

  border-radius: 24px;

  /* padding:20px; */

  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

}



.main-product-image img {

  width: 100%;

  height: 100%;

  border-radius: 20px;

  /* object-fit:cover; */

}



/* story page style  */
.story-hero {
  background: #F7F3DD;
}

.story-hero h1 {

  font-size: 40px;

  max-width: 700px;

  margin: auto;

  line-height: 1.2;

  color: #1D391E;

}

.story-image,
.foundation-image {

  width: 100%;

  height: 500px;

  object-fit: cover;

  border-radius: 28px;

}

.about-story p {
  margin-bottom: 15px;
  line-height: 1.7;
}



.foundation-card {

  background: #fff;

  padding: 50px;

  border-radius: 28px;

}

.foundation-card p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.journey-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  margin-top: 50px;

}

.journey-grid div {

  background: var(--primary-green);

  padding: 35px;

  border-radius: 22px;

  text-align: center;

}

.journey-grid h5 {
  font-size: 45px;
}

.journey-grid p {
  color: #fff;
}

.video-wrap {

  height: 700px;

  position: relative;

  overflow: hidden;

}


.video-wrap video {

  width: 100%;

  height: 100%;

  object-fit: cover;

}


.video-content {

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, .45);

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  color: #fff;

}

.video-content h2 {
  color: #fff;
}

.video-content p {
  color: #fff;
}



.value-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

}


.value-card {

  background: #fff;

  padding: 35px;

  border-radius: 22px;

  text-align: center;

  font-size: 32px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

}

.value-card h5 {
  color: var(--primary-green);
}

.value-card p {
  font-size: 20px;
  color: #000;
}

.impact-box {

  background: #16351C;

  padding: 60px;

  border-radius: 28px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  text-align: center;

  color: #fff;

}

.impact-box h2 {
  color: #fff;
}

.impact-box p {
  color: #fff;
}



.cta-box {

  background: #fff;

  padding: 80px;

  border-radius: 28px;

}


.earthona-side-cart h5{
  color: #000;
}

.cart-count-badge{
    position:absolute;
    top:-8px;
    right:-8px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#ee9b00;
    color:#000;
    font-size:12px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
}

#toast-container > .toast-success {
    background-color: var(--primary-green);
}

#toast-container > .toast-error {
    background-color: #D32F2F;
}

#toast-container > .toast-warning {
    background-color: #F57C00;
}

#toast-container > .toast-info {
    background-color: #1976D2;
}

.addRelatedCart{
  border: 1px solid var(--primary-green);
  border-radius: 50px;
  padding: 5px 8px;
  background-color: var(--primary-green);
  color: #fff;
}

.addRelatedCart:hover{
  border: 1px solid var(--primary-green);
}

.clear-filter-btn{
  float: right;
  color: var(--primary-green);
  text-decoration: underline;
}

.spec-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.spec-card{
    background:#fff;
    border-radius:15px;
    padding:25px;
}

.product-specification h2{
  font-size: 28px;
}
.product-content a{
  color: var(--primary-green);
}

.spec-row{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.coupon-applied{
    margin-top:10px;
    font-size:14px;
}

.coupon-applied button{
    padding:3px 8px;
    font-size:12px;
}

.theme-btn.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.order-success-page{
    background:#f8f5eb;
}

.success-header{
    text-align:center;
    margin-bottom:30px;
}

.success-icon{
    width:90px;
    height:90px;
    margin:auto;
    background:#1f6d3d;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:20px;
}

.success-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    border:1px solid #eee;
    height:100%;
}

.ordered-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px 0;
    border-bottom:1px solid #eee;
}

.ordered-image img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:12px;
}

.ordered-content{
    flex:1;
}

.summary-list{
    list-style:none;
    padding:0;
    margin:0;
}

.summary-list li{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.grand-total{
    border-top:1px solid #eee;
    padding-top:15px;
    font-size:20px;
}

.status-list{
    list-style:none;
    padding:0;
}

.status-list li{
    padding:12px 0;
}

.status-list .active{
    color:#1f6d3d;
    font-weight:600;
}

.earthona-message{
    text-align:center;
    margin-top:40px;
}

.account-dashboard{
    background:#f8f5eb;
}

.dashboard-header{
    background:#fff;
    padding:30px;
    border-radius:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.welcome-text{
    color:#c6a66d;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.dashboard-stat-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
    height:100%;
}

.dashboard-stat-card:hover{
    transform:translateY(-5px);
}

.stat-icon{
    width:60px;
    height:60px;
    background:#edf6ee;
    color:#1e4d2b;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:15px;
}

.dashboard-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.card-head{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.order-item{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 100px;
    align-items:center;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.quick-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.quick-action-btn{
    padding:15px;
    border:1px solid #eee;
    border-radius:12px;
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.quick-action-btn:hover{
    background:#1e4d2b;
    color:#fff;
}

.account-info{
    list-style:none;
    padding:0;
    margin:0;
}

.account-info li{
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.empty-state{
    text-align:center;
    padding:40px 20px;
}

.account-orders-page{
    background:#f8f5eb;
}

.account-page-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.account-page-header h2{
    margin-bottom:10px;
}

.sub-title{
    color:#c8a46d;
    font-weight:600;
    text-transform:uppercase;
}

.order-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.order-card:hover{
    transform:translateY(-3px);
}

.order-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #eee;
    padding-bottom:15px;
    margin-bottom:20px;
}

.order-top h5{
    margin:0;
    color: #000;
}

.label{
    color:#000;
    font-size:13px;
    background-color: transparent;
}

.order-body{
    display:grid;
    grid-template-columns:
        repeat(4,1fr);
    gap:20px;
    align-items:center;
}

.order-info span{
    display:block;
    color:#000;
    font-size:13px;
}

.order-info strong{
    display:block;
    margin-top:5px;
}

.empty-order-box{
    text-align:center;
    background:#fff;
    padding:60px;
    border-radius:20px;
}

.empty-order-box img{
    width:150px;
    margin-bottom:20px;
}


.order-details-page{
    background:#f8f5eb;
}

.account-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.order-page-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.order-label{
    color:#c9a76c;
    text-transform:uppercase;
    font-weight:600;
}

.order-product{
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px 0;
    border-bottom:1px solid #eee;
}

.profile-avatar{
   width:80px;
    height:80px;
    margin: auto;
}

.product-image img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:10px;
    margin: auto;
}

.product-info{
    flex:1;
}

.product-info span{
    display:block;
    color:#000;
    margin-top:5px;
}

.product-price{
    font-weight:700;
}

.summary-list{
    list-style:none;
    padding:0;
    margin:0;
}

.summary-list li{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.grand-total{
    font-size:18px;
    font-weight:700;
    border-top:1px solid #eee;
    padding-top:15px;
}

.timeline{
    position:relative;
}

.timeline-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.timeline-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#1f4d2d;
    margin-top:6px;
}

.account-profile-page{
    background:#f8f5eb;
}

.profile-card{
    background:#fff;
    /* padding:40px; */
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}



.profile-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #f1f1f1;
}

.profile-initial{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#1e4d2b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:48px;
    font-weight:700;
    margin:auto;
    text-transform:uppercase;
}

.wishlist-count{

    position:absolute;

    top:-8px;

    right:-8px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#1f4d2d;

    color:#fff;

    font-size:11px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:600;

}

.wishlist-count-badge{
    position:absolute;
    top:-8px;
    right:-8px;
    min-width:20px;
    height:20px;
    padding:0 6px;
    border-radius:50px;
    background:#1f4d2d;
    color:#fff;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}

.user-menu{
    position: relative;
}

.user-dropdown{
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
      opacity: 0;
    visibility: hidden;
    z-index: 999;
    border-radius: 12px;
    transition: .35s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    transform: translateY(20px);
}

.user-menu:hover .user-dropdown{
     opacity: 1;

  visibility: visible;
    transform: translateY(5px);
}

.user-dropdown a,
.user-dropdown button{
    display: block;
    width: 100%;
    padding: 10px 15px;
    text-align: left;
    border: 0;
    background: none;
    text-decoration: none;
    color: #333;
}

.user-dropdown a:hover,
.user-dropdown button:hover{
    background: #f5f5f5;
    border-radius: 12px;
}

.rating-select{

    display:flex;

    gap:12px;

    font-size:30px;

}

.review-star{

    cursor:pointer;

    color:#ccc;

    transition:.3s;

}

.review-star.active{

    color:#ffc107;

}

.review-images{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.review-image{

    width:50px;

    height:50px;

    object-fit:cover;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

    border:1px solid #eee;

}

.review-image:hover{

    transform:scale(1.08);

    border-color:#1E4D2B;

}

.order-tracking-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.tracking-timeline{

    position:relative;

    margin-left:20px;

}

.timeline-item{

    position:relative;

    padding-left:55px;

    padding-bottom:35px;

}

.timeline-item:last-child{

    padding-bottom:0;

}

.timeline-item::before{

    content:"";

    position:absolute;

    left:18px;

    top:35px;

    width:2px;

    height:100%;

    background:#dcdcdc;

}

.timeline-item:last-child::before{

    display:none;

}

.timeline-icon{

    position:absolute;

    left:0;

    width:38px;

    height:38px;

    border-radius:50%;

    background:#1E4D2B;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:15px;

}

.timeline-content h6{

    margin-bottom:5px;

    font-weight:600;

}

.timeline-content p{

    margin-bottom:5px;

    color:#666;

}

.timeline-content small{

    color:#999;

}

.blog-details-section {

    background: var(--body-bg);

}



/*
LEFT
*/

.blog-details-content {

    background: white;

    padding: 40px;

    border-radius: 30px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

}



.blog-details-image {

    height: 450px;

    overflow: hidden;

    border-radius: 25px;

    margin-bottom: 30px;

}

.single_blog h1 {
    font-size: 45px;
    width: 60%;
    margin: auto;
}


.blog-details-meta {

    display: flex;

    gap: 25px;

    margin-bottom: 25px;

}



.blog-details-meta span {

    color: var(--primary-green);

    font-weight: 600;

}



.blog-details-content h2 {

    margin-bottom: 30px;
    font-size: 32px;

}



.blog-content-area {

    line-height: 2;

}



.blog-content-area img {

    max-width: 100%;

    border-radius: 20px;

    margin: 30px 0;

}



/*
SIDEBAR
*/

.blog-sidebar {

    position: sticky;

    top: 120px;

}



.sidebar-widget {

    background: white;

    padding: 35px;

    border-radius: 25px;

    margin-bottom: 30px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

}



.sidebar-widget h3 {

    margin-bottom: 25px;

}



/*
CATEGORY
*/

.category-list li {

    margin-bottom: 15px;
    padding: 0;
}



.category-list a {

    display: flex;

    justify-content:
        space-between;

    padding: 5px;

    border-radius: 15px;

    /* background: var(--light-bg); */

    transition: .4s;

    color: var(--secondary-color);
    width: 100%;

}



.category-list a:hover {

    /* background: #F89939; */

    color:var(--secondary-green) ;

}



/*
RECENT
*/

.recent-blog-item {

    display: flex;

    gap: 15px;

    margin-bottom: 20px;

}



.recent-blog-image {

    width: 90px;

    height: 90px;

    border-radius: 15px;

    overflow: hidden;

    flex: none;

}



.recent-blog-content a {

    font-weight: 700;

    display: block;

    margin-bottom: 8px;
    color: var(--secondary-color);

}



.recent-blog-content span {

    font-size: 13px;

    color: #000;

}

.earthona-video-banner{
    position: relative;
    overflow: hidden;
    height: 650px;
}

.video-banner-frame,
.video-banner-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-banner-frame{
    border:0;
}

.hero-grid {
    display: flex;
    gap: 20px;
}

.hero-left {
    width: 60%;
}

.hero-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-small-card {
    height: 50%;
}

.hero-section .swiper {
    width: 100%;
    height: 100%;
}

.hero-section .image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.insta-slider .swiper-slide{
    height: auto;
    display: flex;
}

.insta-card{
    display: flex;
    flex: 1;
}

.insta-card{
    height: 550px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insta-card blockquote.instagram-media{
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

.instagram-media{
    height:100% !important;
    max-height:100% !important;
}

.searchResults{

background:#fff;

border-radius:12px;

margin-top:15px;

overflow:hidden;

display:none;

max-height:420px;

overflow-y:auto;

}

.search-item{

display:flex;

align-items:center;

gap:15px;

padding:12px;

border-bottom:1px solid #eee;

transition:.3s;

}

.search-item:hover{

background:#f7f7f7;

}

.search-item img{

width:65px;

height:65px;

object-fit:cover;

border-radius:10px;

}

.search-item h5{

margin:0;

font-size:15px;

color:#222;

}

.search-item p{

margin:0;

font-size:13px;

color:#000;

}

.search-item span{

font-weight:700;

color:#5b8c51;

}

@media(max-width:768px){

    .order-body{

        grid-template-columns:1fr;

    }

    .account-page-header{

        flex-direction:column;
        align-items:flex-start;
        gap:20px;

    }

}


@media(max-width:991px) {

  .story-hero h1 {

    font-size: 42px;

  }


  .journey-grid,
  .value-grid {

    grid-template-columns: repeat(2, 1fr);

  }


  .impact-box {

    grid-template-columns: 1fr;

    gap: 30px;

  }

}


@media(max-width:767px) {

  .journey-grid,
  .value-grid {

    grid-template-columns: 1fr;

  }

}