/* @import url('https://fonts.googleapis.com/css2?family=Martel:wght@200;300;400;600;700;800;900&family=Quicksand:wght@300..700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Outfit:wght@100..900&display=swap');


:root {
  --primary-font: "Outfit", sans-serif;
  --title-font: "Fjalla One", sans-serif;
  --primary-color: #16A34A;
}

html,
body {
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: var(--primary-font);
}

.title-font {
  font-family: var(--title-font);
}

.bg-primary {
  background-color: var(--primary-color);
}

.text-primary {
  color: var(--primary-color);
}

.section-title-wrapper {
  text-align: center;
  width: 100%;
}

.section-title {
  font-family: var(--title-font);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  padding: 20px 0;
  text-align: center;
  position: relative;
  display: inline-block;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.section-title::before {
  left: -75px;
  background-image: url('../images/heading_left.png');
}

.section-title::after {
  right: -75px;
  background-image: url('../images/heading_right.png');
}

.policy-section svg {
  transform: scale(3);
  margin-bottom: 30px;
}


/* Override dark mode styles unless explicitly applied */
html.dark body {
  background-color: #1f2937;
  color: #ececec;
}

html.dark input,
html.dark textarea {
  background-color: #1f2937;
  color: #ececec;
  border: 1px solid #6b7280;
}

/* Ensure toggle icons are styled correctly */
#theme-toggle-dark-icon,
#theme-toggle-light-icon {
  display: none;
}

#theme-toggle-dark-icon:not(.hidden),
#theme-toggle-light-icon:not(.hidden) {
  display: inline-block;
}

/* Swiper Slider  */

.swiper {
  width: 100%;
}

.bannerSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background-color: #bdf7ff;
}

.bannerSwiper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}





/* Overlay effect */

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.bannerSwiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

/* Overlay effect end  */


.slide-text {
  transition: all 0.6s ease;
}

.slide-text.show {
  opacity: 1;
  transform: translateY(0);
}







/* demo */




@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}






/* demo */



.banner-next,
.banner-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}

.banner-next {
  right: 10px;
}

.banner-prev {
  left: 10px;
}

.swiper-pagination {
  min-width: 100px;
  padding: 10px 0;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  border-radius: 0px;
  width: 10px;
  height: 10px;
  background: #444444;
  transition: all 0.3s ease;
  margin: 0 4px;
}

.swiper-pagination-bullet-active {
  background-color: #14b8a6;
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
  z-index: 1;
}



/* Category Slider  */

.mySwiperCategory .swiper-slide {
  height: 100%;
}

.category-next,
.category-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-next {
  right: 0;
}

.category-prev {
  left: 0;
}

/* Product slide  */
.mySwiperProduct .swiper-slide {
  width: 300px;
}

/* Best Product slide  */

.myCubeSwiper .swiper-slide {
  background-position: center;
  background-size: cover;
}

.myCubeSwiper .swiper-slide img {
  display: block;
  width: 100%;
}

.myCubeSwiper .swiper-slide {
  transition: transform 0.8s ease-in-out;
}

.myCubeSwiper .swiper-slide-shadow-left,
.myCubeSwiper .swiper-slide-shadow-right {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.35), transparent);
}


/* Blog section  */

.blog-container img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Modal Styles */
#product-modal {
  display: none;
}

#product-modal[open] {
  display: block;
}

.el-dialog-backdrop {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#product-modal[open] .el-dialog-backdrop {
  opacity: 0.75;
}

.el-dialog-panel {
  max-height: 80vh;
  overflow-y: auto;
}

#modal-size-selection button,
#modal-color-selection button {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

#modal-size-selection button:hover,
#modal-color-selection button:hover {
  background: #f0f0f0;
}

#modal-color-selection button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ccc;
}

#modal-color-selection button.red {
  background: #ef4444;
}

#modal-color-selection button.blue {
  background: #3b82f6;
}

#modal-color-selection button.green {
  background: #10b981;
}

/* Quantity Controls */
#modal-quantity-minus,
#modal-quantity-plus {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

#modal-quantity {
  font-size: 1rem;
  font-weight: 500;
  /* color: #333; */
}

#modal-quantity:focus {
  outline: none;
  border-color: #d4d4d4;
  box-shadow: 0 0 5px rgba(209, 209, 209, 0.5);
}

.dark #modal-quantity-minus,
.dark #modal-quantity-plus {
  color: #e2e8f0;
}

.dark #modal-quantity:focus {
  border-color: #ffffff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* footer  */

.social-icon .facebook-icon svg {
  fill: #fff;
}

.social-icon .x-icon svg {
  fill: #fff;
}

.social-icon .instagram-icon svg {
  fill: #fff;
}

.social-icon .youtube-icon svg {
  fill: #fff;
}


@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 10s linear infinite;
  transform-origin: center center;
}


/* scroll bar design  */
/* For modern browsers */
.scrollbar-custom::-webkit-scrollbar {
  width: 6px;
}

.scrollbar-custom::-webkit-scrollbar-track {
  background: transparent;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
  background-color: #cacaca41;
  border-radius: 9999px;
}

/* Optional: dark mode support */
.dark .scrollbar-custom::-webkit-scrollbar-thumb {
  background-color: #49494959;
}


/* price range bar  */

input[type=range]::-webkit-slider-thumb {
  appearance: none;
  height: 1rem;
  width: 1rem;
  background-color: #14b8a6;
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

input[type=range]::-moz-range-thumb {
  height: 1rem;
  width: 1rem;
  background-color: #14b8a6;
  border-radius: 9999px;
  cursor: pointer;
  z-index: 20;
}



/* Product details slider  */

.gallery {
  width: 100%;
  /* max-width: 620px; */
  /* margin: 40px auto; */
}

.gallery-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}

.gallery-slider .swiper-slide {
  width: auto;
  height: 100%;
}

.gallery-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

.gallery-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.gallery-thumbs .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  opacity: 0.4;
}

.gallery-thumbs .swiper-slide-active {
  opacity: 1;
  /* border: 5px solid #2dd4bf; */
}

.gallery-thumbs .swiper-slide img {
  width: auto;
  height: 100%;
}


.gallery-next {
  right: 8px;
}

.gallery-prev {
  left: 8px;
}

.gallery-next,
.gallery-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* Profile Tabs  */

.user-account-tabs a:active {
  color: #10b981 !important;
}

/* Responsiveness  */

@media only screen and (max-width: 600px) {
  .section-title {
    font-weight: 400;
    font-size: 16px;
  }
}

/* products details page */
.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.collapsible-content.open {
  max-height: 1000px;
}

/* add to cart page */

.tab-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

.tab-card:hover {
  border-color: #4b5563;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-card.active {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

.tab-content,
.location-tab-content {
  display: none;
}

.tab-content.active,
.location-tab-content.active {
  display: block;
}

.map-placeholder {
  height: 200px;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 14px;
}

@media (min-width: 640px) {
  .map-placeholder {
    height: 300px;
  }
}

@media (max-width: 639px) {
  .tab-row {
    flex-direction: column;
  }

  .tab-card {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .location-tab-row {
    flex-direction: column;
  }

  .location-tab-card {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* postal code */
.suggestion-item:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

.suggestion-item {
  cursor: pointer;
}

/*===============+ about us part start here +=============== */

.badge {
  background-color: white;
  border: 2px solid #bd7a00;
  color: #000;
  padding: 1.2rem;
  border-radius: 0.375rem;
  font-family: sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  position: absolute;
  top: 34%;
  left: -18%;
}

.view-more-btn {
  background-color: #a16207;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s;
}

.view-more-btn:hover {
  background-color: #854d07;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 472px;
}

.text-content {
  max-width: 50%;
}

.stat-card {
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bg_jewelery {
  background-image: url('../images/bg_gold.webp');
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  background-position-x: left;
}

/* 2nd layout design */

.bg_jewelery_1 {
   background-image: url('../images/banner-fullwidth2.webp');
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}

@media only screen and (max-width: 600px) {
  .badge {
    display: none !important;
  }
  .text-content{
    max-width: 100% !important;  
    padding: 10px;
  }
  .image-container{
     padding: 10px;
  }
  .res-photos{
  padding: 10px; 
  }
}

/*===============+ about us part ends here +=============== */