@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #254d4d;
  --text-dark: #171717;
  --text-light: #737373;
  --extra-light: #f4f6f5;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Merriweather", serif;
}

.class_barlow {
  font-family: "Barlow Semi Condensed", sans-serif !important;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--primary-color);
}

.section__description {
  font-size: 1.1rem;
  color: var(--text-light);
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--header-font);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__header > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
}

.nav__search {
  display: none;
}

.header__container {
  display: grid;
  overflow: hidden;
  height: 100vh;
}

.header__image {
  z-index: -99;
  position: absolute;
  width: 95%;
  top: 106px;
}

.header__image .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.header__image .slide:first-child {
  position: relative;
}

.header__image .slide.active {
  opacity: 1;
  z-index: 1;
}

.header__image .slide img {
  width: 900px;
  margin-left: auto;
  display: block;
}

/* .header__content {
  grid-area: 1;
  display: flex;
  align-items: center;
  z-index: -1;
  background: #ffffff05;
    backdrop-filter: blur(50px);
    margin-right: -30px;
    border-radius: 10px;
}

.header__content > div {
  max-width: 500px;
  padding: 4rem 1rem;
  backdrop-filter: blur(10px);
} */

.header__content {
  grid-area: 1/1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  margin-right: -30px;
  border-radius: 10px;
}

.header__content > div {
  max-width: 500px;
  padding: 4rem 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 3.5rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: #202020;
}

.header_content p {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Shop Now Call-to-Action Section */
.shop-now-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, var(--extra-light) 0%, #fff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shop-now-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  opacity: 0.03;
  border-radius: 50%;
}

.shop-now-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: var(--primary-color);
  opacity: 0.03;
  border-radius: 50%;
}

.shop-now-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.shop-now-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.shop-now-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.shop-now-btn-centered {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  background-color: #000000;
  border-radius: 50px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.shop-now-btn-centered::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.shop-now-btn-centered:hover::before {
  width: 300px;
  height: 300px;
}

.shop-now-btn-centered:hover {
  background-color: #333333;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.shop-now-btn-centered span {
  position: relative;
  z-index: 1;
}

.shop-now-btn-centered i {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.shop-now-btn-centered:hover i {
  transform: translateX(5px);
}

/* Responsive Styles for Shop Now Section */
@media (max-width: 768px) {
  .shop-now-section {
    padding: 3rem 1rem;
  }

  .shop-now-title {
    font-size: 2rem;
  }

  .shop-now-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .shop-now-btn-centered {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.contact__body {
  display: inline-flex;
  align-items: center;
  width: 90%;
  gap: 10px;
}

.contact__body form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (width > 768) {
}
nav {
  position: relative;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav__header {
  flex: 1;
  padding: 0;
  background-color: transparent;
}

.nav__menu__btn {
  display: none;
}

.nav__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav__logo .logo {
  color: var(--primary-color);
}

.logo img {
  height: 100px;
  object-fit: contain;
}

.nav__links {
  position: static;
  padding: 0;
  width: fit-content;
  flex-direction: row;
  gap: 3rem;
  background-color: transparent;
  transform: none;
}

.nav__links a {
  color: var(--text-dark);
}

.nav__links a:hover {
  color: var(--primary-color);
}

.nav__search {
  flex: 1;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

/* Search input is collapsed by default, expands when .open class is added */
.nav__search input {
  padding-block: 5px;
  outline: none;
  border: none;
  width: 0;
  font-size: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--text-light);
  transition: 0.3s;
}

.nav__search.open input {
  width: 100%;
  max-width: 15rem;
}

.nav__search span {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

.nav__search div i {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

/* RemixIcon icons are loaded from ecom-home-remixicon.css */

.nav__dropdown {
  border-radius: 10px;
  padding: 0px;
  /* padding-right: 100px; */
  background-color: white;
  top: 80px;
  position: fixed;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  left: 0;
  height: calc(100vh - 80px);
  overflow: auto;
  z-index: 1000;
}
.nav__dropdown #lighting {
  width: 400px;
}

.nav__dropdown__animation {
  transform: rotate(90deg);
  transition: all;
}

.nav__dropdown ul li {
  margin: 5px 0px 5px 0px;
}

.nav__dropdown ul li a:hover {
  color: #5d5d5d;
}

.search__items {
  position: absolute;
  top: 0;
  transform: translateY(40px);
  background-color: #fff;
  border-radius: 5px;
  min-width: 280px;
  border: 1px solid #ddd;
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
}
.search__items a {
  color: black;
  border-bottom: 1px solid #ddd;
  margin-inline: 10px;
  margin-top: 10px;
  text-decoration: none;
  display: block;
}

.search__items a:nth-last-child(-n + 1) {
  color: black;
  border: none;
  margin-inline: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.search__items a:hover {
  color: #989898;
}

.hidden {
  display: none;
}

.footer__logo img {
  height: 70px !important;
}
.footer {
  margin-top: 0px;
  /* background-color: var(--primary-color); */
  background-color: #ffffff;
  overflow-x: hidden;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.footer__container {
  display: grid;
  gap: 1rem 2rem;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo .logo {
  color: #868686;
}

.footer__col p {
  /* margin-bottom: 2rem; */
  color: #868686;
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 10px;
  text-align: center;
}

.footer_links_main {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.footer_links_main a {
  color: #171717;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer__socials a {
  font-size: 1.5rem;
  color: #808080
}

.footer__socials a:hover {
  opacity: 0.5;
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  color: var(--extra-light);
  opacity: 0.8;
}

.footer__links a:hover {
  opacity: 1;
}

.footer__lang {
  /* padding: 1rem; */
  font-size: 0.9rem;
  color: #868686;
  opacity: 0.8;
  text-align: center;
}

.footer__lang a {
  color: #171717;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color:#808080;
  opacity: 1;
  text-align: center;
}

.footer__container {
  /* grid-template-columns: repeat(2, 1fr); */
}

.footer__container {
  grid-template-columns: repeat(1, 1fr);
}

@media screen and (max-width: 992px) {
  .header__content {
    position: absolute !important;
    z-index: 1;
    margin-right: 0 !important;
    background: #ffffff70 !important;
  }

  .header__image {
    width: 100%;
    top: 90px;
  }

  .header__image .slide img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    margin-left: 0;
  }

  .nav__header * > i {
    font-size: xx-large;
  }
  .header__content > div {
    max-width: 300px;
  }
  .header__content h1 {
    font-size: 2rem;
  }
  .contact__body > header {
    display: none;
  }

  .nav__links {
    flex-basis: 100%;
    flex-wrap: nowrap;
    order: 3;
    justify-content: center;
  }
  .nav__search {
    visibility: hidden;
  }

  .footer__container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .footer__container:nth-child(n + 1) {
    grid-template-columns: repeat(3, 8rem);
  }
  #main__footer {
    grid-area: 1 / 1 / 2 / 6;
  }
}

@media screen and (max-width: 767px) {
  /* .image_new_class img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .image_new_class{
    height: 250px !important;
  } */

  #home {
    max-width: 100vw !important;
  }

  .header__container {
    height: 65vh;
  }

  .header__content {
    position: absolute !important;
    z-index: 1;
    margin-right: 0 !important;
    background: #ffffff70 !important;
  }

  .header__image {
    width: 100%;
    top: 80px;
  }

  .header__image .slide img {
    width: 100% !important;
    height: 80vh !important;
    object-fit: cover;
    margin-left: 0;
  }

  .header__content > div {
    /* max-width: 359px; */
  }
}

.subcategory-list.hidden {
  display: none;
}
.toggle-subcategories.rotated {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.subcat_class {
  font-size: 13px;
  padding: 10px 0 8px 0;
  border-top: 1px solid #dcdcdc;
}

.subcat_class:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.flex_image_nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.flex_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.solid_border {
  border-bottom: 1px solid #a4a4a4;
  padding: 8px 0;
}

.solid_border:last-child {
  border-bottom: none !important;
}

/* .image_new_class {
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 320px;
}
.image_new_class a {
  display: block;
  padding: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image_new_class img {
    text-align: center;
    transition: opacity 1s ease-in-out;
    display: block;
    height: 100%;
}

#second_image {
  opacity: 0;
  z-index: 1;
  display: none;
}
.image_new_class:hover #second_image {
  opacity: 1;
  display: block;
}

.image_new_class:hover #first_image {
  opacity: 0;
  display: none;
} */


.image_new_class {
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 320px;
}

.image_new_class a {
  display: block;
  padding: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.image_new_class img {
  text-align: center;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  display: block;
  /* height: 100%;
  width: auto;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  margin: auto; */
}

#first_image {
  /* opacity: 1;
  transform: scale(1);
  z-index: 1; */
}

#second_image {
  /* opacity: 0;
  transform: scale(0.95);
  z-index: 2; */
}

/* .image_new_class:hover #first_image {
  opacity: 0;
  transform: scale(0.95);
} */

/* .image_new_class:hover #second_image {
  opacity: 1;
  transform: scale(1);
} */
.flex_product {
  font-family: "Barlow Semi Condensed", sans-serif !important;
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 10px 0 8px 0;
  /* border-top: 1px solid #dcdcdc; */
  justify-content: space-between;

}
.flex_product .name_product {
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 400;
  text-align: center !important;
}

.flex_product .price_new {
  font-family: "Barlow Semi Condensed", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  color: #808080;
  text-align: center !important;
}

/* Add to Cart Button Style */
.add-to-cart-btn {
  margin-bottom: 15px;
  position: absolute;
  top: 43%;
  left: 43%;
  transform: translate(-50%, -50%) scale(0.8);
  padding: 8px;
  background-color: #ffffff;
  border: none;
  opacity: 0;
  transform: translateY(20px); /* Start 20px below */
  cursor: pointer;
  border-radius: 3px;
  font-size: 22px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 99999;
}

.product-grid .product:hover .add-to-cart-btn {
  opacity: 1;
  transform: translateY(0); /* Slide to original position */
}

.add-to-cart-btn:hover {
  background: #ffffff !important;
  box-shadow: 1px 4px 4px rgba(255, 255, 255, 0.05);
}

.image_section_custom {
  display: flex;
  align-items: start;
  flex-direction: row-reverse;
  gap: 20px;
  justify-content: space-between;
}
.image_section_custom .imageCarousel {
  flex-direction: column;
}
.image_section_custom .image {
  width: 83%;
}

.image_section_custom .image img {
  width: 100% !important;
}


.custom_new_box_products {
  
}



/* PRODUCTS NEW */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0;
}

.product-grid .product {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #f0f0f0;
  border-radius: 8px;
  /* Maintain a fixed aspect ratio for uniform height */
  aspect-ratio: 1 / 1.1; /* Adjust ratio as needed (1/1 = square, 1/1.2 = taller) */
}

.product img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product img.back {
  opacity: 0;
}

.product:hover img.front {
  opacity: 0;
}

.product:hover img.back {
  opacity: 1;
}

/* Responsive: 2 columns on mobile */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
