@import url('https://fonts.googleapis.com/css2?family=Barlow: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&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Prompt: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');

/* Boxicons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}

/* Root Styling */
:root {
  --c1: #BFA56F;
  --c2: #4A5400;
  --f1: 'Lexend';
  --f2: 'Prompt';
  --f3: 'Montserrat';
  --f4: 'Barlow';
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #F9F9F9;
}

.img__contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General Styling */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
}

::selection {
  background-color: var(--c1);
  color: #fff;
}

a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #000;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}


p,
li,
a,
span,
input,
input::placeholder,
button {
  font-family: var(--f1);
}


.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
  outline: 0;
}

i.bx {
  font-family: boxicons;
  vertical-align: middle;
}

/* button style */

.themebtn {
  padding: 12px 35px;
  background: var(--c1);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  font-family: var(--f2);
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 0px 0px var(--c1);
  z-index: 99;
  letter-spacing: 1px;
  
}

.themebtn:hover {
  background: var(--c1);
  color: #fff;
}

.themebtn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine .75s;
  animation: shine 2s linear infinite;
}

.themebtn::after {
  position: absolute;
  content: '';
  width: 0;
  right: 0;
  height: 100%;
  background-color: var(--c2);
  top: 0;
  transition: 400ms ease;
  z-index: -1;
}

.themebtn:hover::after {
  width: 100%;
  left: 0;
}

.themebtn:hover span {
  animation: tada 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* button style */


/* header css start */

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

a.header__logo img {
  width: 272px;
  height: auto;
  object-fit: contain;
}

ul.header-main__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

ul.header-main__nav li a {
  font-size: 14px;
  font-family: var(--f1);
  position: relative;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

ul.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--c1);
  transition: all 500ms;
}

ul.header-main__nav li a.active::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover {
  color: var(--c1);
}

ul.header-main__nav li a.active {
  color: var(--c1);
}


/* header css end */

/* baner css start */

.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  min-height: 60vh;
}

.banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

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

.banner_cont {
  position: relative;
  color: #fff;
  text-align: center;
}

.banner_cont h6 {
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--f1);
}

.banner_cont h3 {
  font-size: 51px;
  font-family: var(--f1);
  text-transform: capitalize;
  margin: 0;
  line-height: 59px;
}

.banner_cont p {
  font-size: 16px;
  font-weight: 200;
  font-family: var(--f2);
  width: 85%;
  margin: 12px auto;
}

.top_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 0px;
}

.top_bar p {
  margin: 0;
  font-size: 14px;
}

.languages select {
  width: 120px;
  padding: 5px 5px;
  font-weight: 500;
  font-family: var(--f1);
  font-size: 16px;
  outline: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.languages {
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
}



.custom-select-desktop {
  position: relative;
  min-width: 130px;
}

.custom-select-desktop .selected-desktop {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  gap: 5px;
  transition: all 0.3s ease;
}

.custom-select-desktop .selected-desktop:hover {
  border-color: #999;
}

.custom-select-desktop .selected-desktop img {
  width: 20px;
  height: 15px;
  object-fit: cover;
}

.custom-select-desktop .selected-desktop span {
  flex: 1;
  font-size: 14px;
}

.custom-select-desktop .selected-desktop i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.custom-select-desktop .options-desktop {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-select-desktop .options-desktop li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.custom-select-desktop .options-desktop li:last-child {
  border-bottom: none;
}

.custom-select-desktop .options-desktop li:hover {
  background: #f5f5f5;
}

.custom-select-desktop .options-desktop li img {
  width: 20px;
  height: 15px;
  object-fit: cover;
}

.custom-select-desktop .options-desktop li span {
  font-size: 14px;
}

/* Close dropdown when clicking outside */
.custom-select-desktop.open .options-desktop {
  display: block;
}

/* Scrollbar styling for dropdown */
.custom-select-desktop .options-desktop::-webkit-scrollbar {
  width: 6px;
}

.custom-select-desktop .options-desktop::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.custom-select-desktop .options-desktop::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.custom-select-desktop .options-desktop::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.header-shipping {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-shipping a {
  font-size: 25px;
  position: relative;
}

.header_top {
  border-bottom: 1px solid #e7e7e7;
}

.dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  width: 200px;
  background: #fff;
  z-index: 1;
  transition: 500ms;
  transform: translateY(30px);
  top: 100%;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 6px 0px #7f7f7f;
}

.dropdown a {
  padding: 11px 12px;
  display: block;
  border-bottom: 1px solid #00000036;
}

ul.header-main__nav li {
  position: relative;
}

ul.header-main__nav li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.header-shipping a span {
  position: absolute;
  top: 11px;
  right: -3px;
  width: 13px;
  height: 13px;
  font-size: 10px;
  background: rgb(221, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50px;
}

ul.header-main__nav li a i {
  font-size: 30px;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -5px;
  transition: 500ms;
}

ul.header-main__nav li:hover a i {
  transform: rotate(180deg);
}

.top_bar p img {
  width: 20px;
  margin-right: 6px;
}

.product_section {
  padding: 70px 0px;
}

.section_titl h3 {
  font-size: 43px;
  text-transform: uppercase;
  font-family: var(--f3);
  font-weight: 600;
  margin: 0;
}

.section_titl p {
  font-size: 15px;
  font-family: var(--f3);
  font-weight: 500;
}

.pro_img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 12px 0px #f1f1f1;
}

.pro_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pro_cont h6 {
  font-size: 15px;
  color: #b9b9b9;
  text-transform: uppercase;
  font-family: var(--f2);
  font-weight: 300;
  margin: 0;
}

.pro_cont p {
  font-size: 13px;
  text-transform: uppercase;
  font-family: var(--f2);
  margin-bottom: 30px;
  height: 40px;
}

.pro_cont ul {
  display: flex;
  align-items: center;
  gap: 3px;
}

.pro_cont ul li {
  font-size: 16px;
  color: #FFC107;
}

.pro_cont ul li span {
  color: #b9b9b9;
  font-size: 14px;
  font-family: var(--f2);
}

.pro_cont h1 {
  font-size: 28px;
  font-family: var(--f2);
  font-weight: 500;
  margin: 0;
  line-height: 1;
}

.pro_cont h1 span {
  font-size: 21px;
  text-decoration: line-through !important;
  margin-left: 8px;
}

.pro_cont {
  padding: 14px 18px;
  position: relative;
}

.pro_item {
  margin: 12px 13px;
  transition: 500ms;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 10px;
  box-shadow: 0 4px 12px rgba(255, 65, 108, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.discount-badge span {
  display: block;
  line-height: 1;
  letter-spacing: 0.5px;
}

.out-of-stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #666;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 10;
    font-size: 10px;
}

/* Tablet */
@media (max-width: 991px) {
    .out-of-stock-badge {
        font-size: 8px;
        padding: 4px 8px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .out-of-stock-badge {
        font-size: 8px;
        padding: 4px 7px;
        top: 8px;
        right: 8px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .out-of-stock-badge {
        font-size: 6px;
        padding: 3px 6px;
        top: 5px;
        right: 5px;
    }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .discount-badge {
    padding: 5px 10px;
    font-size: 12px;
    top: 8px;
    left: 8px;
  }
}

@media (max-width: 480px) {
  .discount-badge {
    padding: 4px 8px;
    font-size: 11px;
    top: 6px;
    left: 6px;
  }
}
.slick-arrow {
  position: absolute;
  top: 23%;
  left: -4%;
  width: 50px;
  height: 100px;
  border-radius: 0;
  background: #A4A4A4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick-arrow::before {
  content: "\ea4d";
  font-family: boxicons !important;
  font-size: 50px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick-arrow:hover {
  background: var(--c2);
}

.slick-next {
  right: -4%;
  left: auto;
  transform: rotate(180deg);
}


.pro_btn {
  align-items: center;
  gap: 10px;
  display: none;
}

.pro_btn .themebtn {
  border-radius: 0;
  flex: 1;
 
}

.pro_btn .themebtn a{
justify-content: center;
  align-items: center;
 
}


.pro_btn .themebtn i {
  font-size: 20px;
  margin-top: -7px;
  
}

a.heart {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  border-radius: 6px;
  border: 1px solid var(--c2);
  color: var(--c2);
}

a.heart:hover {
  color: #fff;
  background: var(--c2);
}

.pro_item:hover .pro_price {
  display: none;
}

.pro_item:hover .pro_btn {
  display: flex;
}

.pro_item:hover {
  background: #fff;
  box-shadow: 0px 0px 10px 0px #e3e3e3;
}


a.shop_img {
  width: 100%;
  height: 185px;
  overflow: hidden;
  border-radius: 10px;
}

a.shop_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 500ms;
}

h3.shop_title {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.shop_by_gender {
  padding-bottom: 70px;
}

a.shop_img:hover img {
  transform: scale(1.1);
}

a.shop_img span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #354520;
  transition: 500ms;
}

a.shop_img span:hover {
  background: #364621;
  color: #fff;
}

.gender_btn {
  text-align: center;
  margin-top: 30px;
}


.pro_tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.pro_tabs .nav-tabs {
  border: none;
  gap: 20px;
}

.pro_tabs .nav-tabs .nav-link 
{
  background: transparent;
  border: 2px solid var(--c2);
  border-radius: 0;
  color: #000;
  font-size: 12px;
  font-weight: 600;
}

.pro_tabs .nav-tabs .nav-item.show .nav-link,
.pro_tabs .nav-tabs .nav-link.active {
  border: 2px solid var(--c2);
  background: var(--c2);
  color: #fff;
}

.pro_tabs .nav-tabs .nav-link:focus,
.pro_tabs .nav-tabs .nav-link:hover {
  border-color: var(--c2);
}

.pro_tabs h3 {
  margin: 0;
}

.logo_item {
  width: 100%;
  height: 100px;
  overflow: hidden;
  padding: 10px;
}

.logo_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo_section {
  padding: 25px 0px;
  background: #00000008;
  border-bottom: 2px solid #ffffff;
}

.video-play-button {
  position: relative;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  display: block;
  width: 80px;
  height: 80px;
  background: var(--c2);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 24px solid var(--c2);
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.80);
  opacity: 0;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #fa183d;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

.countdown {
  display: flex;
  gap: 20px;
}

.time-box {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.time-box h2 {
  margin: 0;
  font-size: 32px;
  color: #343434;
  font-family: var(--f1);
  font-weight: 600;
}

.time-box span {
  font-size: 14px;
  color: #343434;
  display: block;
  margin-top: 5px;
  font-weight: 700;
}

.teaser_video {
  background: #EEEEEE;
}

.video {
  width: 100%;
  height: 449px;
  overflow: hidden;
  position: relative;
}

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

.video_btn {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: -webkit-center;
}

.video_btn p {
  margin-top: 37px;
  color: #fff;
  font-size: 22px;
  text-align: center;
}

.video_cont h3 {
  font-size: 49px;
  color: #343434;
  font-weight: 700;
  font-family: var(--f1);
  border-left: 2px solid #000;
  padding-left: 18px;
  height: 60px;
}

.video_cont p {
  margin: 35px 0px;
  font-size: 18px;
  font-weight: 600;
}

.video_cont {
  width: 81%;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #333;
  margin-left: 3px;
  animation: blink 0.7s infinite;
  vertical-align: middle;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.help_card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 43px 20px;
  border-radius: 34px;
  background: #eeeeee;
}

.need_help {
  padding: 70px 0px 0;
}

.card_icon img {
  width: 100px;
  height: auto;
}

.card_cont h4 {
  font-size: 22px;
  font-family: var(--f1);
  font-weight: 600;
  padding-left: 11px;
  border-left: 2px solid #000;
  margin-bottom: 28px;
}

.card_cont p {
  font-size: 14px;
  font-weight: 300;
}

.our_promise {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
}

.promise_card {
  width: 19%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promise_icon {
  width: 52px;
  height: 52px;
}

.promise_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.promise_cont p {
  margin: 0;
  font-family: var(--f2);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  width: 80%;
  color: #636363;
}

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

.help_btn a {
  background: transparent;
  box-shadow: 0px 0px 0px 1px var(--c1);
  color: #000;
  font-weight: 500;
  font-size: 18px;
  padding: 9px 70px;
  margin-bottom: 11px;
}

.help_btn p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--f2);
}



.footer {
  padding: 50px 0px 0px;
}

.footer_logo {
  width: 60%;
  height: 56px;
  overflow: hidden;
}

a.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_cont h4 {
  font-family: var(--f1);
  font-weight: 500;
  font-size: 17px;
}

.footer_form {
 margin-top: 2rem;
}

.form-input-wrapper {
  width: 100%;
  display: flex;
  gap: 1rem;
  margin-bottom: 0; /* ✅ Remove bottom margin */
}

.footer_form input {
  width: 72%;
  padding: 10px 2px;
  border-bottom: 2px solid #606060 !important;
  border: none;
  outline: none;
  font-family: var(--f2);
  font-size: 16px;
  font-weight: 400;
  background: transparent;
}


.footer_form input::placeholder {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f1);
  color: #6060606b;
}

.footer_form input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 0px rgba(102, 126, 234, 0.1);
}

.footer_form input.error {
  border-color: #ff4d4f;
  background-color: #fff2f0;
}

.footer_form input:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.footer_form button {
  box-shadow: 0px 0px 0px 2px #343434;
  padding: 10px 14px;
  font-family: var(--f2);
  font-weight: 500;
  font-size: 17px;
  background: transparent;
  border: none;
}

.footer_form button:hover {
  background: var(--c1);
  color: #fff;
  border: none;
  box-shadow: none;
}


/* ✅ Subscription Message - BELOW FORM */
.subscription-message {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  margin-top: 1.5rem; /* ✅ Space from form */
  animation: slideDown 0.3s ease-out;
  width: 100%; /* ✅ Full width */
}

/* ✅ Slide down animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subscription-message.success {
  background-color: #f6ffed;
  border: 1px solid #b7eb8f;
  color: #52c41a;
}

.subscription-message.error {
  background-color: #fff2f0;
  border: 1px solid #ffccc7;
  color: #ff4d4f;
}

.message-icon {
  font-size: 1.8rem;
  font-weight: bold;
  flex-shrink: 0; /* ✅ Prevent icon from shrinking */
}

.message-text {
  flex: 1;
  line-height: 1.6;
}

.footer_links h3 {
  font-weight: 700;
  font-family: var(--f1);
  font-size: 20px;
  margin-bottom: 18px;
  color: #343434;
}

.footer_links {
  display: grid;
  justify-content: flex-end;
  align-items: center;
}

.footer_links li a {
  font-family: var(--f1);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 22px;
}

.footer_links li a:hover {
  color: var(--c1);
}


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

.footer_icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.end_footer {
  padding: 45px 0px;
  margin-top: 55px;
  border-top: 1px solid #60606042;
}

.end_foot_main p {
  font-family: var(--f1);
  font-weight: 600;
  font-size: 17px;
}

.footer_icons h4 {
  margin: 0;
  font-size: 18px;
  font-family: var(--f1);
  font-weight: 500;
  padding-right: 14px;
}

.footer_icons li a {
  font-size: 27px;
  border: 1px solid;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.footer_icons li a:hover {
  box-shadow: 0px 0px 6px 5px var(--c1);
  transform: translateY(-6px);
  color: var(--c1);
}

.insta_img {
  width: 100%;
  height: 320px;
  overflow: hidden;
  filter: brightness(0.6);
}

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

.insta_sect {
  display: flex;
  justify-content: center;
  align-items: center;
}

.insta_btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--f1);
  font-weight: 600;
  font-size: 21px;
  background: gainsboro;
  padding: 12px 17px;
}

.insta_btn i {
  font-size: 30px;
}

.insta_btn:hover {
  box-shadow: 0px 0px 20px 2px gainsboro;
}

.reviews {
  padding: 68px 0px;
}

.reviews_cont {
  background: url(../images/review-back.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 55px 0px;
  border-radius: 30px;
}

.reviews_cont h3 {
  font-weight: 600;
  font-size: 30px;
  margin: 0 0 20px;
}

.reviews_cont h5 {
  font-family: var(--f1);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 14px;
}

.reviews_cont p {
  font-family: var(--f2);
  font-size: 16px;
  font-weight: 300;
  width: 48%;
  margin: 0 auto;
  color: gray;
}

.client_star {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  margin: 0 0 10px;
}

.client_star li {
  color: #f5a91c;
  font-size: 22px;
}

.reviews_cont img {
  width: 300px;
  height: 80px;
  object-fit: cover;
}

.span-1 {
  position: relative;
}

.span-1 img {
  width: 26px;
  height: 26px;
  position: absolute;
  top: -225px;
  left: -565px;
}

.span-2 {
  position: relative;
}

.span-2 img {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 35px;
  left: 250px;
}

.span-3 {
  position: relative;
}

.span-3 img {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 48px;
  left: 300px;
}

.footer_links li {
  line-height: 1;
}


/* inner pages css start */

.inner_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 46vh;
  overflow: hidden;
}

.inner_banner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

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

.inner_banner_cont h3 {
  color: #fff;
  margin: 0;
  font-family: var(--f4);
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 23px;
}

.inner_banner_cont h4 {
  color: var(--c1);
  margin: 0;
  font-family: var(--f1);
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 23px;
}

.inner_banner_cont h1 {
  color: white;
  margin: 0;
  font-family: var(--f1);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 23px;
}

.inner_banner_cont a {
  color: #fff;
  font-size: 16px;
  font-family: var(--f2);
  font-weight: 300;
}

.banner_link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50%;
  margin: 0 auto;
  font-size: 13px;
}



.product_page {
  padding: 70px 0px;
}

.shop_tabs {
  display: flex;
  align-items: center;
  gap: 30px;
}

.showing {
  display: flex;
  align-items: center;
  gap: 60px;
}

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

.shop_tabs p {
  margin: 0;
  font-family: var(--f2);
  font-size: 13px;
  color: #696969;
}

.showing p {
  margin: 0;
  font-size: 14px;
  font-family: var(--f2);
  color: #4b4b4b;
}

.showing a {
  font-size: 27px;
}

.shop_tabs .nav-tabs .nav-link {
  background: transparent;
  box-shadow: 0px 0px 0px 1px #636363;
  border-radius: 1px;
  color: #636363;
  font-family: var(--f2);
  font-size: 13px;
  padding: 8px 38px;
}

.shop_tabs .nav-tabs {
  border: none;
  display: flex;
  gap: 36px;
}

.shop_tabs .nav-tabs .nav-item.show .nav-link,
.shop_tabs .nav-tabs .nav-link.active {
  background: var(--c2);
  box-shadow: 0px 0px 0px 1px var(--c2);
  color: #fff;
}

.side_box {
  padding: 30px 30px;
  box-shadow: 0px 0px 0px 1px #757575;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
}

.side_box h4 {
  font-size: 15px;
  font-family: var(--f1);
  color: #000;
  margin-bottom: 19px;
}

.chek_item {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 23px;
}

.chek_item label {
  font-size: 14px;
  color: #6b6b6b;
  font-family: var(--f2);
  line-height: 1;
}

.chek_item input {
  accent-color: var(--c2);
}

.chek_item a {
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline !important;
  color: #373737;
}

.chek_item label:hover {
  color: var(--c2);
  cursor: pointer;
}

.shop_card .pro_item:hover .pro_price {
  display: block;
}

.shop_card .pro_btn {
  position: absolute;
  top: -40px;
}

.inner_banner_cont p {
  color: #fff;
  margin: 0;
  font-family: var(--f2);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 20px;
  font-weight: 300;
}

.brand_pages {
  padding: 70px 0px;
}

.alfabets {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 30px;
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 30px;
}

.alfabets a {
  padding: 10px 57px;
  font-size: 14px;
  background: #fff;
  box-shadow: 0px 0px 1px 1px #c1c1c1;
  border-radius: 3px;
  color: #858585;
  font-family: var(--f2);
  margin-bottom: 6px;
}

.alfabets a:hover {
  background: var(--c2);
  color: #fff;
}

.brands_main h4 {
  font-size: 27px;
  text-transform: uppercase;
  font-family: var(--f2);
  margin: 10px 0px;
  transition: transform 0.3s ease;
  width: max-content;
}

.highlight {
  animation: scaleBlink 1200ms ease infinite;
}

@keyframes scaleBlink {
  0% {
    transform: scale(1);
    opacity: 1;
    color: var(--c1);
  }

  25% {
    transform: scale(1.5);
    opacity: 0.6;
  }

  50% {
    transform: scale(1);
    opacity: 1;
    color: var(--c1);
  }

  75% {
    transform: scale(1.5);
    opacity: 0.6;
    color: var(--c2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    color: var(--c1);
  }
}

.brands_main h5 {
  font-size: 28px;
  font-family: var(--f1);
  margin: 17px 0px 35px;
}

.alf_img {
  width: 90px;
  height: 90px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px #e3e3e3;
  border-radius: 10px;
  margin: 0 auto 6px;
}

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

.alf_cont p {
  margin: 0;
  font-size: 10px;
  text-align: center;
  color: gray;
}

.alf_logo {
  margin-top: 20px;
}

.alf_logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 7px;
}


.alf_logo a {
  margin-bottom: 13px;
}


.sidebar_dropdown {
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

.sidebar_dropdown .drp_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 19px 11px;
  background: #fff;
}

.sidebar_dropdown .drp_menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f5f5f5;
}

.sidebar_dropdown .drp_menu a {
  display: block;
  padding: 12px 10px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #d1d1d1;
  text-transform: capitalize;
  width: 100%;
}

.sidebar_dropdown.active .drp_menu {
  max-height: 500px;
}


.brand_sidebar h3 {
  font-size: 28px;
  font-family: var(--f1);
  margin-bottom: 20px;
}

.drp_link h4 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--f2);
}

.drp_link i {
  width: 18px;
  height: 18px;
  background: var(--c2);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidebar_dropdown .drp_menu a:hover {
  background: var(--c2);
  color: #fff;
}

.brand_category_section {
  padding: 70px 0px;
}

.armani_img {
  width: 100%;
  height: 370px;
  overflow: hidden;
}

.armani_img img {
  width: 100%;
  height: 100%;
  transition: 500ms;
  object-fit: cover;
}

.armani_cont h3 {
  text-align: center;
  padding: 13px 0px;
  font-family: var(--f2);
  margin: 0;
  text-transform: uppercase;
  background: #fff;
  font-size: 20px;
}

.armani_img:hover img {
  transform: rotate(5deg) scale(1.2);
}

.nots_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 21px;
  gap: 8px;
  cursor: pointer;
}

.nots_item {
  width: 8.80%;

}

.nots_img {
  width: 100%;
  height: 100px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #dddddd;
}

.nots_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nots_cont h3 {
  font-size: 11px;
  text-align: center;
  font-family: var(--f2);
  color: #717171;
  font-weight: 300;
  margin: 0;
  padding: 7px 0px;
}

.nots_section {
  padding: 70px 0px;
}

.lern_more a {
  padding: 10px 40px;
  border: 1px solid #000;
  font-size: 14px;
  font-family: var(--f1);
  font-weight: 300;
}

.lern_more {
  text-align: center;
  margin-top: 3rem;
}

.lern_more a:hover {
  background: var(--c2);
  color: #fff;
}

.shop_inner {
  padding: 20px 0px;
  background: #F6F4ED;
}

.banner_link a {
  position: relative;
}

.cart_section {
  padding: 70px 0px;
}

.you_cart h3 {
  font-size: 22px;
  font-family: var(--f2);
  font-weight: 600;
  margin-bottom: 10px;
}

.Giorgio p {
  margin: 0;
  font-size: 14px;
}

.Giorgio i {
  font-size: 16px;
}

.car__img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  text-align: end;
  position: relative;
}

.car__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.car__img a {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  accent-color: var(--c1);
}

.cart___cont p {
  font-size: 12px;
  margin: 0;
  font-weight: 300;
}

.cart___cont h6 {
  font-size: 15px;
  font-family: var(--f1);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 7px 0px;
}

.cart___cont h5 {
  font-size: 14px;
  font-family: var(--f2);
}

.cart___cont h3 {
  font-size: 23px;
  font-family: var(--f2);
}

.add_cart {
  display: flex;
  align-items: center;
  gap: 11px;
}

.cart__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 11px;
  background: #fff;
  border-radius: 13px;
}

.quinity input {
  width: 40px;
  text-align: center;
  font-size: 14px;
  height: 40px;
  background: transparent;
  outline: 0;
  border: 1px solid var(--c2);
  font-family: var(--f1);
  color: var(--c2);
  font-weight: 500;
  border-radius: 5px;
}

.quinity button {
  width: 10px;
  height: 30px;
  border: none;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

button.delete {
  font-size: 22px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c2);
  border-radius: 5px;
  color: var(--c2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.quinity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quinity a {
  padding: 10px 20px;
  text-transform: capitalize;
  font-size: 13px;
  font-family: var(--f1);
  box-shadow: 0px 0px 0px 1px var(--c2);
  color: var(--c2);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.quinity a i {
  font-size: 18px;
}

.Giorgio {
  margin-bottom: 21px;
  padding: 10px 10px;
  border-radius: 7px;
  box-shadow: 0px 0px 2px 0px #9d9d9d;
  display: flex;
  align-items: center;
  gap: 9px;
}

.cart___cont h6 img {
  width: 17px;
}

.car__img i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 19px;
  color: var(--c1);
}

.quinity a:hover {
  background: var(--c2);
  color: #fff;
}

.Giorgio i {
  color: #1db74e;
  font-size: 20px;
}

.coupon {
  padding: 40px 30px;
  background: #F6F4ED;
  border-radius: 11px;
}

.coupon h3 {
  font-size: 27px;
  font-family: var(--f2);
  font-weight: 600;
}

.coupon form input {
  width: 100%;
  padding: 20px 10px;
  border-radius: 7px;
  border: 1px solid var(--c2);
  font-size: 12px;
  outline: 0;
  margin-bottom: 20px;
}

.coupon form .themebtn {
  border: none;
  background: var(--c2);
  padding: 17px 30px;
}

.cart_total_main {
  margin-top: 30px;
}

.df {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 50%;
  margin-bottom: 29px;
}

.df p {
  margin: 0;
}

.df.alt {
  margin-left: 200px;
}

.dfB_tn a {
  width: 100%;
  text-align: center;
  padding: 18px 10px;
  font-size: 15px;
  background: var(--c2);
}

.detail_sub a {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 9px;
  margin: 20px 10px;
}

.detail_sub a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pro_detail_main {
  display: flex;
  justify-content: space-between;
  justify-content: end;
  position: relative;
}

.detail_sub {
  position: absolute;
  width: 100px;
  top: 50%;
  left: 0;
  height: 100%;
  transform: translateY(-50%);
}

.product_detail_img {
  width: 80%;
  height: 500px;
  background: transparent;
  border-radius: 10px;
  text-align: end;
}

.product_detail_img img {
  width: 77%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  background: #fff;
  border-radius: 12px;
}

.product_detail {
  padding: 70px 0px;
}

.detail_para {
  font-size: 13px;
  text-transform: uppercase;
  color: #afafaf;
  font-weight: 200;
  margin: 0;
}

h3.detail_title {
  font-size: 30px;
  font-family: var(--f2);
  font-weight: 600;
  margin: 7px 0px;
  line-height: 1;
}

.product_detail_text ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0px;
}

.product_detail_text ul li {
  font-size: 16px;
  color: #FFC107;
}

.product_detail_text ul li span {
  color: #838383;
  font-weight: 300;
  font-size: 14px;
}

.detail_price {
  font-family: var(--f2);
  font-weight: 600;
}

.detail_price span {
  font-size: 18px;
  font-weight: 300;
  color: #838383;
  text-decoration: line-through !important;
}

.detail_dsc {
  display: flex;
  align-items: center;
  gap: 20px;
}

.detail_dsc img {
  width: 210px;
}

.detail_dsc p {
  font-size: 12px;
  line-height: 2.3;
  color: #838383;
  margin: 0;
}



.size {
  display: flex;
  align-items: center;
  width: 40%;
  justify-content: space-between;
  margin: 12px 0px;
}

.shipping {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b9b9b9;
  margin-bottom: 12px;
}

.shipping h6 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  font-family: var(--f2);
}

.shipping h5 {
  font-size: 18px;
  font-family: var(--f1);
  color: var(--c1);
}

.shipping h5 span {
  font-size: 13px;
  color: #737373;
  font-family: var(--f3);
}

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

.duinity_del button {
  background: transparent;
  border: none;
  outline: 0;
  height: 44px;
  border-left: 1px solid #d1d1d1;
  width: 40px;
  color: #d1d1d1;
}

.duinity_del input {
  width: 70px;
  height: 44px;
  background: transparent;
  outline: 0;
  border: transparent;
  text-align: center;
}

.duinity_del {
  border: 1px solid #d1d1d1;
}

button.minus {
  border-left: 0;
  border-right: 1px solid #d1d1d1;
}

.duinity_del button:hover {
  color: #000;
}

.add_to_bag {
  width: 72%;
}

.add_to_bag a {
  padding: 11px 10px;
  text-align: center;
  width: 100%;
  box-shadow: 0px 0px 0px 1px var(--c2);
  background: #fff;
  color: var(--c2);
  border-radius: 5px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.detail_btn img {
  width: 280px;
}

.detail_btn a {
  padding: 11px 100px;
  box-shadow: 0px 0px 0px 1px var(--c2);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  background: var(--c2);
}

.detail_btn {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 21px 0px;
}

.detail_btn .disabled,
.add_to_bag .disabled,
.themebtn   .disable{
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.wish {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0px;
}

.wish a {
  font-family: var(--f3);
  color: gray;
  font-size: 18px;
}


.discount {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
}

.voucher {
  width: 29%;
}

.discount_item h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-family: var(--f2);
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--c2);
}

.discount_item h4 i {
  font-size: 20px;
  color: #afafaf;
  margin: 0;
}

.discount_item p {
  font-size: 14px;
  font-family: var(--f3);
  color: #5f5f5f;
  margin-bottom: 7px;
}

.discount_item h6 {
  font-size: 15px;
  text-transform: uppercase;
  font-family: var(--f2);
  font-weight: 500;
  padding: 10px 10px;
  border-top: 1px dashed #b5b5b5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.discount_item {
  padding: 12px 21px;
  background: #fff;
  position: relative;
  box-shadow: 0px 0px 10px 0px #dfdfdf;
}

.discount_item::before {
  position: absolute;
  content: '';
  width: 27px;
  height: 20px;
  background: #f9f9f9;
  bottom: 48px;
  left: -9px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.discount_item::after {
  position: absolute;
  content: '';
  width: 27px;
  height: 20px;
  background: #f9f9f9;
  bottom: 48px;
  right: -9px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.voucher h4 {
  font-size: 21px;
  font-family: var(--f2);
  font-weight: 600;
}

.voucher p {
  font-family: var(--f3);
  text-transform: capitalize;
  font-size: 15px;
}

.discount_item h6 i {
  color: var(--c1);
}

.accords img {
  width: 100%;
  height: 100%;
}

.accords {
  margin: 34px 0px;
}


.search-box {
  margin-bottom: 10px;
}

.brand-search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.brand-search-input:focus {
  outline: none;
  border-color: #007bff;
}

.review-box {
  padding: 20px;
  border-radius: 10px;
  width: 350px;
  position: sticky;
  top: 20px;
}

.review-header {
  font-size: 27px;
  margin-bottom: 10px;
  font-family: var(--f2);
  color: var(--c2);
  font-weight: 400;
  margin: 0;
}

.stars {
  color: var(--c2);
  font-size: 42px;
  line-height: 0;
}

.average-rating {
  font-size: 18px;
  margin-left: 10px;
  color: gray;
  font-family: var(--f3);
}

.bar-row {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.bar-row span {
  width: 20px;
  font-size: 15px;
  color: #5b5b5b;
}

.bar-container {
  flex: 1;
  height: 15px;
  background: #eee;
  margin: 0 10px;
  border-radius: 1px;
  overflow: hidden;
}

.bar {
  height: 100%;
  background: var(--c2);
  width: 0%;
}

.percent {
  font-size: 13px;
  color: #555;
  width: 35px;
  text-align: right;
}

.detail_tabs .nav-tabs .nav-link {
  padding: 19px 52px;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #a3a3a3;
  font-family: var(--f2);
  font-size: 19px;
}

.detail_tabs .nav-tabs .nav-item.show .nav-link,
.detail_tabs .nav-tabs .nav-link.active {
  background: var(--c2);
  color: #fff;
}

.detail_tabs .nav-tabs {
  margin-bottom: 13px;
}

.detail_tabs .tab-content p {
  font-size: 15px;
  color: #8d8d8d;
  font-family: var(--f2);
  margin-bottom: 14px;
}

.detail_tabs .tab-content {
  padding: 15px 0px;
}

.review_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.review_btn a {
  padding: 8px 22px;
  box-shadow: 0px 0px 0px 1px #7f7f7f;
  border-radius: 5px;
  color: #7f7f7f;
  font-family: var(--f2);
  background: #fff;
}



.review-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 30px;
  width: 600px;
  margin-top: 25px;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ccc;
  margin-right: 12px;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: bold;
  font-size: 16px;
}

.review-date {
  font-size: 13px;
  color: #777;
}

.stars {
  color: olive;
  font-size: 18px;
  margin-top: 5px;
}

.rating-text {
  font-size: 14px;
  color: #555;
  margin-left: 6px;
}

.review-text {
  margin: 24px 0;
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
  font-family: var(--f3);
}

.review-images {
  display: flex;
  gap: 12px;
  margin: 15px 0;
}

.review-images .img-placeholder {
  width: 80px;
  height: 80px;
  background: #ddd;
  border-radius: 8px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #555;
}

.review-footer span {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.like::before {
  content: "👍";
}

.report::before {
  content: "⚠️";
}

.all_review {
  margin-top: 30px;
}

.all_review .themebtn {
  width: 30%;
  text-align: center;
  padding: 15px;
  background: var(--c2);
}

.box {
  background: #fff;
  border-radius: 10px;
  padding: 32px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  font-family: var(--f1);
}

/* Product Section */
.product-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 12px 0px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.product-name {
  font-size: 14px;
  margin-bottom: 1px;
  font-family: var(--f1);
  font-weight: 400;
}

.store-name {
  font-size: 13px;
  color: #666;
}

/* Delivery Address */
.info-box {
  background: #eaf4ff;
  color: #1793f5;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
}

.add-btn {
  display: inline-block;
  background: #f4fdf4;
  border: 1px solid #cce5cc;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

/* Delivery Type */
.delivery-type {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.delivery-type label {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f6f6f6;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--f1);
  font-size: 13px;
}

/* Dropdown */
select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: 0;
  padding: 6px 5px !important;
  font-family: var(--f1);
  font-size: 14px;
}

/* Order Summary */
.order-detail {
  margin-bottom: 20px;
}

.order-detail div {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  font-size: 14px;
}

.total {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.payment-methods label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

.payment-methods img {
  width: 40px;
}

/* Proceed Button */
.proceed-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #ddd;
  border: none;
  border-radius: 8px;
  cursor: not-allowed;
  font-size: 15px;
}

.delivery-address {
  padding: 12px 12px;
  box-shadow: 0px 0px 2px 0px #999999;
  border-radius: 10px;
}

.order-detail span {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 14px;
}

.total {
  padding: 13px 0px;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
}

.total span {
  font-size: 20px;
  font-family: var(--f1);
  font-weight: 600;
}

.checkout_section {
  padding: 70px 0px 0;
}

.box.order_details {
  background: transparent;
  box-shadow: 0px 0px 0px 1px #e3e3e3;
}

p.info {
  margin: 10px 0px;
  font-size: 12px;
  font-family: var(--f3);
}

.order-wrapper {
  font-family: var(--f1);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
}

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

/* Progress Steps */
.order-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.order-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.order-step-box {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  font-size: 13px;
  background: #f9f9f90d;
  width: 73%;
  text-align: left;
  height: 59px;
  position: relative;
  z-index: 9;
  font-family: var(--f1);
}

.order-step-active .order-step-box {
  background: var(--c2);
  color: #fff;
}

.order-step-date {
  font-size: 11px;
  display: block;
  margin-top: 4px;
  font-weight: 300;
}

/* Order Item */
.order-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.order-item-img {
  width: 100px;
  margin-right: 15px;
  border-radius: 8px;
  object-fit: contain;
}

.order-info {
  flex: 1;
}

.order-info-title {
  font-size: 14px;
  font-family: var(--f1);
  font-weight: 400;
  margin: 0;
}

.order-price {
  font-size: 16px;
  font-weight: 600;
  margin: 3px 0;
  font-family: var(--f1);
}

.order-status {
  display: inline-block;
  padding: 5px 10px;
  font-size: 10px;
  border-radius: 50px;
  background: #ff948859;
  color: #bf2c2c;
  margin-left: 10px;
}

.order-seller {
  margin: 2px 0;
  font-size: 13px;
  color: #696969;
  font-family: var(--f1);
  font-weight: 400;
}

/* Support Buttons */
.order-support {
  display: flex;
  gap: 15px;
}

.order-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--f1);
}

.order-btn-light {
  background: #f0f7f3;
  color: #333;
}

.order-btn-dark {
  background: var(--c2);
  color: #fff;
}

.order-step::before {
  width: 82%;
  background: #f9f9f9;
  top: 0;
  left: 50%;
  content: '';
  height: 100%;
  position: absolute;
  transform: translateX(-50%);
}

.order-steps::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--c1);
}

.our_product {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 18px 15px;
  justify-content: space-between;
  background: #fff;
  margin-bottom: 20px;
}

.need_support {
  display: flex;
  align-items: center;
  gap: 10px;
}

.need_support a {
  width: 170px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #ECF8F7;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--c1);
}

.need_support a i {
  font-size: 23px;
}

a.whatsapp {
  background: var(--c2);
  color: #fff;
}

.order-step-box i {
  font-size: 17px;
}

.delivery__address {
  padding: 22px 20px;
  background: #fff;
  border-radius: 11px;
}

.delivery__address h4 {
  font-size: 18px;
  font-family: var(--f1);
  font-weight: 600;
}

.delivery__address p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 13px 0px;
  font-size: 15px;
  color: #5d5d5d;
}

p.total_price {
  padding: 12px 0px;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
}

.delivery__address.oder__detail {
  background: transparent;
}

.login_popup {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 500ms;
  background: #000000a8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
}

.login_form {
  position: relative;
  z-index: 9;
  background: #fff;
  width: 61%;
  border-radius: 10px;
  overflow: hidden;
  transition: 500ms;
  transform: scale(0);
}

.login_error {
  color: red;
  text-align: center;
  font-size: 14px;
}

.form_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.login_main {
  padding: 40px 20px;
  position: relative;
  height: 100%;
}

.login_logo {
  width: 220px;
  height: auto;
  margin: 0 auto;
}

.login_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.login_main h5 {
  font-size: 14px;
  padding: 9px 10px;
  background: #F5F5F5;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0px 0px 0px 1px #d9d9d9;
  margin-bottom: 21px;
}

.login_main h3 {
  font-size: 28px;
  text-align: center;
  font-weight: 600;
  font-family: var(--f1);
  text-transform: capitalize;
  margin: 31px 0px;
}

a.signin_email {
  text-align: center;
  font-size: 14px;
  font-family: var(--f1);
  font-weight: 300;
  position: relative;
  width: max-content;
  margin: 0 auto;
  background: #fff;
  padding: 0px 10px;
}

.anchor {
  text-align: center;
  position: relative;
  margin-bottom: 18px;
}

.anchor::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background: #bdbdbd;
  top: 52%;
  left: 0;
  transform: translateY(-50%);
}

.form_control input {
  width: 100%;
  padding: 11px 10px;
  font-size: 14px;
  border: 1px solid #c7c7c7;
  border-radius: 10px;
  outline: 0;
}

.form_control label {
  font-family: var(--f2);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 3px 0px;
}

.form_control button {
  margin-top: 10px;
  border: none;
  outline: 0;
  width: 100%;
  background: var(--c2);
}

.form_control {
  margin-bottom: 5px;
}

.login_main p {
  font-size: 14px;
  font-family: var(--f1);
  text-align: center;
  margin-bottom: 0;
  margin-top: 30px;
}

.form_copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 10px;
  width: 95%;
  left: 0;
}

.terms_and_conditions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms_and_conditions a {
  display: block;
  font-size: 11px;
  color: #0087ff;
}

.form_copyright p {
  font-size: 11px;
  margin: 0;
}

.login_main p a {
  color: #007bff;
  font-family: var(--f2);
  font-size: 15px;
  margin-left: 3px;
}

.form_close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  font-size: 24px;
  background: var(--c1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.form_close:hover {
  background: var(--c2);
}

.form_close:hover i {
  transform: rotate(360deg);
  color: #fff;
}

.form_close i {
  transition: 500ms;
}

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

.login_popup.active .login_form {
  transform: none;
}

.login_form.sign_up {
  display: none;
}

.form_check {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  margin: 4px 0px;
}

.form_check label {
  font-size: 12px;
  text-align: center;
}

.form_check label a {
  font-size: 12px;
  color: #0070ff;
}

.form_check input {
  accent-color: var(--c1);
  width: 15px;
  height: 15px;
}

.sign_up .form_control input {
  padding: 8px 10px;
}

.sign_up .login_main h3 {
  margin: 11px 0px;
}

.sign_up .login_main h5 {
  margin-bottom: 8px;
}


.sign_up .login_main p {
  margin-top: 6px;
}

.checkout_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #00000091;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.checkout_popom_main {
  width: 50%;
  background: #fff;
  padding: 36px 40px;
  border-radius: 10px;
}

.checkout_popom_main h4 {
  font-size: 34px;
  font-family: var(--f2);
  color: #000;
  text-align: center;
}

.checkout_popom_main p {
  font-size: 15px;
  text-align: center;
  margin: 0;
}

.checkout_popom_main form {
  margin-top: 30px;
}

.checkout_input input,
.checkout_input select,
.checkout_input textarea {
  width: 100%;
  height: 44px;
  padding: 10px;
  border: none;
  font-size: 14px;
  box-shadow: 0px 0px 1px 1px #d7d7d7;
  border-radius: 6px;
  margin: 0;
  outline: 0;
}

.checkout_input {
  margin-bottom: 14px;
}

.checkout_input label {
  font-size: 14px;
  font-family: var(--f1);
  font-weight: 500;
  margin-bottom: 3px;
}

.checkout_input textarea {
  height: 109px;
}

.checkout_input button {
  width: 100%;
  margin-bottom: 9px;
  border: none;
  outline: 0;
}

.cancel.themebtn {
  background: #f5f5f5;
  color: #000;
  font-weight: 500;
  width: 100%;
  text-align: center;
}

.cancel.themebtn:hover {
  color: #fff;
  background: var(--c2);
}

.cancel.themebtn::after {
  display: none;
}

@keyframes blink {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.span-1 img,
.span-2 img,
.span-3 img {
  animation: blink 1.5s infinite ease-in-out;
}

.span-1 img {
  animation-delay: 0s;
  animation-duration: 1.8s;
}

.span-2 img {
  animation-delay: 0.5s;
  animation-duration: 1.3s;
}

.span-3 img {
  animation-delay: 1s;
  animation-duration: 2s;
}



/* responsive  css start */

.menu_logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
}


.side_menu {
  width: 90%;
  background: #fff;
  height: 100vh;
  position: fixed;
  top: 0;
  padding: 10px 16px;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 200ms all;
    overflow: visible !important;
  /* OR if you need scroll */
  overflow-y: auto !important;
  overflow-x: visible !important;
}

.responsive_menu {
  display: none;
}

.show {
  transform: translateX(0%);
}

.responsive_logo img {
  width: 100px;
}

.open_menu {
  font-size: 30px;
  color: var(--c2);
}

.side_menu li a {
  padding: 10px 12px;
  width: 100%;
  color: #373737;
  text-transform: capitalize;
  font-size: 15px;
}

.close_menu {
  text-align: end;
  padding: 8px 12px !important;
}

.menu_sticky {
  position: fixed;
}

.responsive_overly {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #000000a3;
  transition: 200ms;
  left: -100%;
  top: 0;
  z-index: 9999;
}

.responsive_overly.show {
  left: 0;
}

.side_menu li.accordion-button {
  background: transparent;
  padding: 0;
}

.side_menu .accordion-item {
  background: transparent;
  border: none;
}

.side_menu .accordion-button::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: boxicons !important;
  background-image: none;
  content: "\ebc0";
  color: #000;
  font-size: 19px;
}

.side_menu .accordion-body {
  padding: 0;
  overflow-x: auto;
}

.side_menu .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  background-image: none;
  content: "\eb8b";
  color: var(--c1);
}

.side_menu .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  outline: 0;
  border-color: transparent;
}

.side_menu .accordion-button:not(.collapsed) a {
  color: var(--c1);
}

.close_menu i {
  font-size: 23px;
}

/* responsive  css end */

.quinity .minus {
  border: none;
}

.checkout_input a {
  width: 100%;
  text-align: center;
}


.nots_slider .slick-arrow {
  top: 40%;
  transform: translateY(-50%);
}

.nots_slider .slick-next {
  transform: translateY(-50%) rotate(180deg);
}

.nots_item.slick-slide {
  margin: 0px 10px;
}

.nots_slider a {
  margin: 0 10px;
}

.nots_slider .alf_img {
  width: 162px;
  height: 100px;
  padding: 2px;
  background: #fff;
}

.nots_slider .alf_img img {
  object-fit: contain;
}

.nots_slider .slick-arrow {
  background: #e7e7e7;
  width: 38px;
  height: 70px;
}

.nots_slider .slick-arrow::before {
  font-size: 35px;
}

.slick-dots li {
  width: auto;
  height: auto;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  background: var(--c1);
  border-radius: 50px;
  transition: 500ms;
}

.slick-dots li button::before {
  display: none;
}

li.slick-active button {
  background: var(--c2);
}

ul.slick-dots {
  bottom: -10px;
}

.checkout_cont {
  text-align: center;
  padding: 30px 21px;
  box-shadow: 0px 0px 10px 0px #e9e9e9;
  border-radius: 10px;
  margin-bottom: 40px;
}

/* new css start */

.filder_btn {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.active-filters {
  margin: 15px 0;
}

.filter-tag {
  display: inline-block;
  background: #f1f1f1;
  border: 1px solid #ccc;
  padding: 4px 8px;
  margin: 3px;
  border-radius: 3px;
  font-size: 14px;
}

.filter-tag .remove {
  margin-left: 6px;
  color: #666;
  cursor: pointer;
  font-weight: bold;
}

.filder_btn a {
  padding: 5px 13px;
  background: #131d2d;
  font-size: 14px;
  border-radius: 3px;
  color: #fff;
}

#clearFilters {
  background: #131d2d;
}



.pf-container {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.pf-box {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
}

.pf-title {
  margin: 0;
  font-size: 15px;
  color: #333;
  font-family: var(--f1);
  letter-spacing: 0.2px;
}

.pf-slider-wrap {
  position: relative;
  height: 32px;
  /* space for thumbs */
  margin: 0px 0 8px 0;
}

/* Visual track (background) */
.pf-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  /* vertically center under thumbs */
  height: 6px;
  background: #e6e6e6;
  border-radius: 6px;
  pointer-events: none;
  box-sizing: border-box;
}

/* Filled part between handles */
.pf-track-fill {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #b8860b, #3b5323);
  /* gold -> olive */
  pointer-events: none;
}

/* Two overlaid input[type=range] elements */
.pf-range {
  -webkit-appearance: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 24px;
  margin: 0;
  background: transparent;
  pointer-events: none;
  /* allow clicking through to specific thumb only */
}

/* make thumbs clickable */
.pf-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #3b5323;
  background: #d9c07a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.pf-range::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #3b5323;
  background: #d9c07a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 3;
}

/* hide default track visuals across browsers */
.pf-range::-webkit-slider-runnable-track {
  background: transparent;
  height: 6px;
}

.pf-range::-moz-range-track {
  background: transparent;
  height: 6px;
}

/* Value labels row */
.pf-values {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -6px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  gap: 5px;
}

.pf-values .pf-small {
  font-weight: 500;
  font-size: 12px;
  color: #666;
  display: block;
}

/* Apply button */
.pf-apply {
  margin-top: 16px;
  padding: 8px 42px;
  border: none;
  border-radius: 6px;
  background: #3b5323;
  font-size: 14px;
  color: white;
  font-weight: 400;
  letter-spacing: 0.6px;
  cursor: pointer;
}

.pf-apply:active {
  transform: translateY(1px);
}

/* small responsive tweak */
@media (max-width: 380px) {
  .pf-box {
    width: 100%;
    padding: 16px;
  }
}

span.filter_line {
  width: 17px;
  background: #c9c9c9;
  height: 2px;
}

.pf-value {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
}

.pf-lable {
  font-family: var(--f1);
}

div#pf-min-label {
  font-family: var(--f1);
}

div#pf-max-label {
  font-family: var(--f1);
}

.filter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
}

/* Filter Sidebar */
.shop_filter {
  position: relative;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  animation: slideInRight 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

a.filter_popup_close {
  position: absolute;
  top: 6px;
  right: 7px;
  font-size: 23px;
  background: #fff;
  width: 40px;
  font-size: 28px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.shop_filter {
  padding: 49px 14px;
}

.shop_filter .accordion-button {
  padding: 7px 10px;
  font-size: 13px;
  font-family: var(--f1);
  border: 1px solid #ebebeb;
  box-shadow: none;
}

.shop_filter .accordion-item {
  margin-bottom: 10px;
  border: none;
}

.shop_filter .accordion-button::after {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "\ed91";
  background-image: none;
  font-size: 10px;
  position: absolute;
  font-family: boxicons !important;
  right: 10px;
  top: 5px;
}

.shop_filter .accordion-button:not(.collapsed) {
  color: var(--c1);
  background: #fff;
  box-shadow: none;
}

.shop_filter .accordion-button:not(.collapsed)::after {
  background-image: none;
}

.shop_filter .accordion-button:focus {
  border-color: #ededed;
  box-shadow: none;
}

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


.custom-select {
  position: relative;
  width: 180px;
  cursor: pointer;
}

.custom-select .selected {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f1);
  font-size: 13px;

  
}

.custom-select img {
  width: 20px;
  height: 14px;
}

.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: #fff;
  display: none;
  z-index: 99;

   display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute !important;
  z-index: 99999 !important;
  background: white !important;
}

.custom-select .options li {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.custom-select.open .options {
  display: block;
}


.side_menu form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 5px 12px;
  gap: 10px;
  box-shadow: 0px 1px 0px 0px #ebebeb;
  margin-bottom: 14px;
  margin-top: 0px;
}

.side_menu form input {
  background: transparent;
  border: none;
  outline: 0;
  color: gray;
  font-size: 13px;
  width: 100%;
}

.side_menu form button {
  background: transparent;
  border: none;
  font-size: 17px;
  color: gray;
  outline: 0;
}

.social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social a {
  font-size: 32px;
  color: var(--c1);
}

.link_row {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0px;
  justify-content: space-between;
}

.link_colom {
  width: 49%;
}

/* ========================================= cart sidebar start ========================================= */

.cart_img img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.cart_pro {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #e9e9e9;
  padding: 12px 0px;
}

a.close_pro {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 8px;
  right: 15px;
  color: #000;
  font-size: 14px;
}

.cartr_cont {
  position: relative;
  width: 100%;
}

.cart_heading h3 {
  text-align: center;
  font-size: 31px;
  text-transform: capitalize;
  font-family: var(--f3);
  margin-bottom: 20px;
}


.cart_total {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 20px 25px;
}

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

.total {
  margin-bottom: 13px;
  padding: 4px 23px;
}

.subtotal_btn {
  display: grid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 17px;
}

a.themebtn.alt {}

a.themebtn.alt::after {
  background: var(--c1);
}

.sidenav {
  height: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0px 10px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: 200ms all;
  width: 500px;
  border-left: 1px solid;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-image: initial;
  padding: 20px 17px;
}

.sidenav.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.cart_heading a {
  font-size: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

section.cart.ovelay {
  width: 100% !important;
  background: #000000c4 !important;
  position: fixed;
  z-index: 999;
  height: 100vh;
  top: 0;
  left: 0;
  transition: 200ms all;
}

/* =========================================  cart sidebar end =========================================  */

.you_cart {
  position: sticky;
  top: 20px;
}

.cart_side_total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0px;
}

.cart_side_total h4 {
  margin: 0;
  font-size: 17px;
  text-transform: capitalize;
  font-family: var(--f1);
  font-weight: 500;
}

.cart_side_total p {
  margin: 0;
  font-size: 15px;
}

span.priceline {
  width: 100%;
  height: 2px;
  border-bottom: 1px dashed var(--c1);
  display: block;
}

.subtotal_btn a {
  padding: 15px 43px;
  color: #fff;
  border-radius: 0;
  width: 48%;
  text-align: center;
  font-size: 16px;
}


a.closebtn {
  font-size: 42px;
  position: absolute;
  top: 13px;
  left: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cartr_cont h5 {
  font-size: 14px;
  font-family: var(--f3);
  width: 70%;
  margin-bottom: 7px;
}

.cartr_cont p {
  font-size: 15px;
  margin: 0;
}

.btn_green {
  background: var(--c2);
}

.btn_red {
  background: #ff5544;
}


.accord {
  margin-bottom: 4px;
}

.accord a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
}

.bar-container {
  flex: 1;
  height: 20px;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
}

.bar {
  transition: width 1.5s ease;
}

.accord .bar {
  background: var(--c1);
  border-radius: 50px;
}

.accord .bar-container {
  height: 27px;
  border-radius: 50px;
}

.accords_section {
  padding: 70px 0px;
}

.bar_img {
  width: 45px;
  height: 45px;
  overflow: hidden;
  padding: 4px;
  border-radius: 100%;
}

.bar_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.accord a span {
  position: absolute;
  top: 12px;
  left: 11%;
  color: #fff;
  font-size: 13px;
  font-family: var(--f3);
  display: inline-block;
  text-transform: uppercase;
}


.accords_title {
  text-align: center;
  position: relative;
}

.accords_title h6 {
  background: #f9f9f9;
  font-family: var(--f1);
  width: max-content;
  margin: 0 auto;
  font-size: 20px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
  padding: 0px 13px;
}

.accords_title::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background: #dddddd;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.notes_main_img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 19px 0px;
}

a.topnotes_img img {
  width: 32px;
  height: auto;
}

a.topnotes_img {
  width: 78px;
  text-align: center;
}

a.topnotes_img p {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
}

h4.accord_title {
  font-size: 25px;
  font-family: var(--f3);
  font-weight: 500;
}

.top_notes {
  margin-top: 42px;
}

.accords_btn {
  display: none;
}

.custom-select .options li i {
  display: none;
}

.cart_quinity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e5e5e5;
  width: 100px;
}

.cart_quinity inpur {
  width: 40px;
  height: 40px;
}

.cart_quinity button {
  background: transparent;
  outline: 0;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart_quinity input {
  width: 40px;
  text-align: center;
  background: transparent;
  border: none;
  outline: 0;
  font-size: 14px;
}

button.cart_minus {
  border-right: 1px solid #d3d3d3;
}

button.cart_plus {
  border-left: 1px solid #d3d3d3;
}

.quinity_main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pro_sub_slider {
  height: 100%;
}


.pro_all_btn {
  text-align: center;
  margin-top: 2rem;
}

.mobile_d_block {
  padding: 20px 0px !important;
  display: none;
}

.buynow_btn a {
    width: 100%;
    padding: 12px;
    background: var(--c2);
    text-align: center;
    border-radius: 5px;
    color: #fff;
}

.buynow_btn {
    margin-top: 28px;
    display: none;
}

.mobile_view {
    display: none;
}

/* privacy policy css */


     .dots-btn {
            position: relative;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 200px;
            margin-top: 20px;
            width: 100%;
            padding: 12px;
            background: #ddd;
          
        }

        .dots-btn:hover:not(:disabled) {
            background-color: #E64A19;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .dots-btn:disabled {
            cursor: not-allowed;
            opacity: 0.9;
        }

        .loading-dots {
            display: inline-flex;
            gap: 4px;
            margin-left: 8px;
        }

        .loading-dots span {
            width: 6px;
            height: 6px;
            background-color: white;
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out both;
        }

        .loading-dots span:nth-child(1) {
            animation-delay: -0.32s;
        }

        .loading-dots span:nth-child(2) {
            animation-delay: -0.16s;
        }

        .checkout_input input:disabled,
        .checkout_input select:disabled,
        .payment-methods input:disabled,
        .delivery-type input:disabled,
        button:disabled {
          opacity: 0.6;
          cursor: not-allowed;
          background-color: #f5f5f5;
        }

        .payment-methods label:has(input:disabled) {
          opacity: 0.6;
          cursor: not-allowed;
        }

        @keyframes bounce {
            0%, 80%, 100% {
                transform: scale(0);
            }
            40% {
                transform: scale(1);
            }
        }

        .status {
            margin-top: 10px;
            font-size: 14px;
            color: #666;
            min-height: 20px;
        }

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }

        .popup-overlay.show {
            display: flex;
        }

        /* Popup Modal */
        .popup-modal {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 450px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: scaleUp 0.5s ease;
            position: relative;
        }

        /* Close Button */
        .close-x {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close-x:hover {
            background: #f0f0f0;
            color: #333;
        }

        /* Success Icon */
        .success-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            position: relative;
        }

        .success-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #bfa56f;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: bounceIn 0.6s ease;
            box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
        }

        .success-circle::before {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(76, 175, 80, 0.2);
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        .checkmark {
            width: 50px;
            height: 50px;
            stroke: white;
            stroke-width: 4;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
            animation: drawCheck 0.6s ease 0.3s forwards;
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
        }

        /* Text */
        .popup-title {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            animation: fadeInUp 0.5s ease 0.4s backwards;
        }

        .popup-message {
            font-size: 16px;
            color: #666;
            margin-bottom: 25px;
            animation: fadeInUp 0.5s ease 0.6s backwards;
        }

        /* Order Details */
        .order-details {
            background: #f0f9ff;
            border: 2px solid #bfa56f;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 25px;
            animation: fadeInUp 0.5s ease 0.8s backwards;
        }

        .order-info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .order-info-row:last-child {
            margin-bottom: 0;
        }

        .order-info-row .label {
            color: #666;
        }

        .order-info-row .value {
            font-weight: bold;
            color: #333;
        }

        .order-info-row .value.order-num {
            font-size: 18px;
        }

        .order-info-row .status {
            color: #bfa56f;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Action Buttons */
        .button-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .action-btn {
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .track-btn {
            background:#bfa56f;
            color: white;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        }

        .track-btn:hover {
            background: #bfa56f;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        }

        .continue-btn {
            background: white;
            color: #333;
            border: 2px solid #ddd;
        }

        .continue-btn:hover {
            background: #f8f8f8;
            border-color: #bbb;
        }

        .action-btn:active {
            transform: scale(0.95);
        }

        .email-notice {
            text-align: center;
            font-size: 13px;
            color: #888;
            margin-top: 20px;
        }

        /* Icons */
        .icon {
            width: 20px;
            height: 20px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleUp {
            from {
                transform: scale(0.7);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes bounceIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @keyframes ping {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        @keyframes drawCheck {
            to { stroke-dashoffset: 0; }
        }

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

  .load-more-section {
    background: white;
    padding: 40px;
  
    text-align: center;
    margin-bottom: 40px;
}

.load-more-btn {
    padding: 18px 40px;
    background: #bfa56f;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


.load-more-btn:hover:not(:disabled) {
    background: #bfa56f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(191, 165, 111, 0.3);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.load-more-icon {
    font-size: 20px;
    animation: bounce 2s infinite;
}

/* Accords List */
.accord-list {
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 2px;
  border-radius: 1px;
  padding: 2px;
}

/* Custom Scrollbar */
.accord-list::-webkit-scrollbar {
  width: 8px;
}

.accord-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.accord-list::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.accord-list::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

.privacy-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 10px;    
    color: #222;
    line-height: 1.75;
    font-size: 16px;
}

.privacy-wrapper h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
}

.privacy-wrapper p {
    margin-bottom: 18px;
}

.privacy-wrapper b {
    font-size: 18px;
    display: block;
    margin: 25px 0 10px 0;
}

.privacy-wrapper span {
    background: transparent !important;
    color: #222 !important;
}

/* terms and condition */
.term-condition-wrapper {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
    color: #222;
    line-height: 1.7;
    font-size: 16px;
}

.term-condition-wrapper h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 40px;
    text-align: left;
}

.term-condition-wrapper p {
    margin-bottom: 18px;
}

.term-condition-wrapper .section-title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
    display: block;
}

.term-condition-wrapper span {
    background: transparent !important;
    color: #222 !important;
}

/* return policy */

.return-policy {
    max-width: 1200px !important;
    margin: 30px auto !important;
    padding: 0 15px !important;
    color: #222 !important;
    line-height: 1.7 !important;
    font-size: 16px !important;
}

.return-policy h4 {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
    margin-top: 10px !important;
    color: #222 !important;
}

.return-policy h5 {
    font-size: 18px !important;
    font-weight: 700;
    margin-top: 25px !important;
    margin-bottom: 12px !important;
    color: #222;
}


.return-policy p {
    margin-bottom: 18px !important;
}

.return-policy ul {
    margin-left: 20px !important ;
    margin-bottom: 18px !important;
}

.return-policy ul li {
    margin-bottom: 8px !important;
}


.return-policy span {
    background: transparent !important;
    color: #222 !important;
}

@media (max-width: 767px) {
    .return-policy {
        padding: 0 10px !important;
    }
}


/* About us css */

.banner {
            background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
                       url('assets/images/About-NicheGallerie.com-Company-Header-background-1.webp') center/cover !important;
            padding:20px !important;
            text-align:center !important;
            color:#fff !important;
            height: 380px !important;
        }
        .banner-text{
            margin-top: 100px !important;
        }
        .banner a {
            color:#fff !important;
            text-decoration:none !important;
            margin:0 10px !important;
            font-size:14px;
        }
        .banner h1 {
            font-size:75px;
            margin:10px 0;
            font-weight:bold;     
        }
        .banner p {
            font-size:20px;
        }

        .content {
            padding:40px 20px;
            margin-top: 20px;
            text-align:center;
        }
        .content h2 {
            font-size:24px;
            color:#c59d5f;
            font-family:'Script',cursive;
            font-weight:bold;      
        }
        .content p {
            font-size:16px;
            color:#333;
            max-width:800px;
            margin:auto;
        }
        .elementor-section-boxed > .elementor-container {
    max-width: 1200px; 
    padding: 80px 20px; 
    column-gap: 50px; 
    margin: 0 auto; 
	
}

.elementor-container {
    display: flex;
    flex-wrap: wrap; 
    align-items: flex-start;
}

.elementor-element-83c082f {
    flex: 1 1 45%; 
    padding-right: 20px;
    box-sizing: border-box; 
}

.elementor-heading-title {
   
    font-size: 2.5em; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    line-height: 1.1;
	color: #616420ff;
}

.elementor-widget-text-editor {
   
    font-size: 1.05em;
}


.elementor-element-c193a09 {
    flex: 1 1 45%;
    padding-bottom: 45%; 
    min-height: 0; 
    position: relative;
    box-sizing: border-box;
}

.elementor-element-27209d3 {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible; 
}

.elementor-element-27209d3 img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    border-radius: 8px; 
    position: absolute; 
    transform: scale(1.05) translateX(2%) translateY(5%); 
}

.mission-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
   
    padding: 60px 40px;
    border-radius: 8px;
}

.mission-section {
    max-width: 1200px;
    margin: 0 auto; 
    padding: 60px 20px;
    text-align: center;
}

.main-heading {
    font-family: 'Playfair Display', serif; 
    font-size: 2.5em;
    font-weight: 700;
    color: #616420ff;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; 
    justify-content: center;
    margin-bottom: 80px;
}

.value-card {
    flex: 1; 
    min-width: 280px; 
    text-align: left;
    padding: 0 15px; 
}

.card-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-left: 20px; 
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}


.card-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #d1b452; 
}

.card-text {
    font-size: 0.95em;
    color: #555;
}

.review-section {
    text-align: center;
    padding: 50px 20px;
}

.review-section h2 {
    font-weight: 700;
    font-size: 28px;
    color: #4b4e1e;
    margin-bottom: 40px;
    line-height: 1.4;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    justify-items: center;
}

.review-card {
    width: 100%;
    max-width: 2000px;
   
}

.trustpilot-btn {
    margin-top: 40px;
    background-color: #555a18;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.trustpilot-btn:hover {
    background-color: #707520;
}


.review-banner {
    width: 100vw;              
    margin-left: 50%;          
    transform: translateX(-50%);  
}

.review-banner img {
    width: 100%;
    height: auto;
    display: block;            
}

.review-section p{
    margin-top: 20px;
}
:root {
            --dark-bg: #222222; 
            --light-text: #ffffff;
            --highlight-color: #f83f3f; 
            --title-color: #c9c9c9; 
            --section-padding: 80px 0;
        }
.impact-section-wrapper {
            width: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/images/buy-niche-perfumes-fragrance-wallpaper-background-collection-nichegallerie.com_.webp') center center no-repeat;
            background-size: cover;
            padding: 80px 0;
            height: 400px;
            background-attachment: fixed;
        }

        .impact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            text-align: center;
        }

        .impact-title {
            font-size: 36px;
            font-weight: bold;
            color: var(--title-color);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 50px;
        }

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 20px 0;
        }

        .counter-item {
            color: var(--light-text);
            text-align: center;
        }

        .counter-number {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 10px;
            color: #c59d5f;
        }

        .counter-label {
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .cta-section {
            padding: 40px 0 var(--section-padding);
            text-align: center;
            background-color: var(--light-text);
        }

        .cta-text {
            font-size: 24px;
            color: var(--secondary-text-color);
            margin-bottom: 30px;
        }

        .cta-button {
            background-color: var(--highlight-color);
            color: var(--light-text);
            padding: 14px 30px;
            border: none;
            border-radius: 3px;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 14px;
        }

        .cta-button:hover {
            background-color: #555a18;
            color: var(--light-text);
        }
/* components/Search/SearchBox.css */

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

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

/* Search Container */
.search-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50px);
  width: 100%;
  max-width: 800px;
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.search-overlay.active .search-container {
  transform: translateX(-50%) translateY(0);
}

/* Search Input Wrapper */
.search-input-wrapper {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.search-icon {
  font-size: 24px;
  color: #999;
  margin-right: 10px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 10px;
  background: transparent;
}

.search-input::placeholder {
  color: #999;
}

.search-clear {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 5px;
  margin-right: 10px;
  transition: color 0.3s;
}

.search-clear:hover {
  color: #333;
}

.search-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s;
}

.search-close:hover {
  color: #000;
}

/* Search Results */
.search-results {
  max-height: 500px;
  overflow-y: auto;
  padding: 10px 0;
}

.search-results::-webkit-scrollbar {
  width: 6px;
}

.search-results::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.search-results::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Loading Animation */
.search-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  animation: fadeIn 0.3s ease;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f0f0f0;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.search-loading p {
  color: #666;
  font-size: 14px;
}

/* Search Results Header */
.search-results-header {
  padding: 10px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #666;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Search Results List */
.search-results-list {
  animation: fadeIn 0.3s ease;
}

/* Search Result Item */
.search-result-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  animation: slideUp 0.3s ease;
}

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

.search-result-item:hover {
  background: #f9f9f9;
}

.search-result-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-info h6 {
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 400;
}

.search-result-info p {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-result-price .price {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.search-result-price .original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}


/* No Results */
.search-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #999;
  animation: fadeIn 0.3s ease;
}

.search-no-results i {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.5;
}

.search-no-results p {
  font-size: 14px;
}

/* Search Suggestions */
.search-suggestions {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #999;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .search-container {
    max-width: 95%;
    border-radius: 0 0 8px 8px;
  }

  .search-input-wrapper {
    padding: 15px;
  }

  .search-input {
    font-size: 16px;
  }

  .search-icon {
    font-size: 20px;
  }

  .search-result-image {
    width: 50px;
    height: 50px;
  }

  .search-result-item {
    padding: 12px 15px;
  }

  .search-result-info h6 {
    font-size: 11px;
  }

  .search-result-info p {
    font-size: 13px;
  }

  .search-result-price .price {
    font-size: 14px;
  }

  .search-result-price .original-price {
    font-size: 12px;
  }

  .search-results {
    max-height: 400px;
  }

  .search-no-results,
  .search-suggestions {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .search-container {
    max-width: 100%;
    border-radius: 0;
  }

  .search-input-wrapper {
    padding: 12px 15px;
  }

  .search-input {
    font-size: 15px;
  }

  .search-results {
    max-height: calc(100vh - 80px);
  }
}

/* Mobile menu currency dropdown fix */
.side_menu .custom-select {
  position: relative;
  z-index: 10;
  margin-bottom: 20px;
}

.side_menu .custom-select .selected {
  cursor: pointer;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
}

.side_menu .custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 5px;
  padding: 0;
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
}

.side_menu .custom-select .options li {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.side_menu .custom-select .options li:hover {
  background: #f5f5f5;
}

.side_menu .custom-select img {
  width: 20px;
  height: 15px;
  object-fit: cover;
}

/* Filter Tags Styles */
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.filter-tag:hover {
  background: #ebebeb;
  border-color: #d0d0d0;
}

.filter-value {
  color: #333;
  font-weight: 500;
  line-height: 1;
}

.remove-filter-btn {
  background: none;
  border: none;
  color: #666;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.remove-filter-btn:hover {
  background: #fff;
  color: #ff4444;
  transform: scale(1.1);
}

.remove-filter-btn:active {
  transform: scale(0.95);
}

/* Filter Type (optional - if you have it) */
.filter-type {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  margin-right: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .filter-tag {
    padding: 6px 10px;
    font-size: 13px;
    gap: 6px;
    margin-right: 8px;
    margin-bottom: 8px;
  }

  .filter-value {
    font-size: 13px;
  }

  .remove-filter-btn {
    font-size: 18px;
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .filter-tag {
    padding: 5px 8px;
    font-size: 12px;
    gap: 5px;
    margin-right: 6px;
    margin-bottom: 6px;
  }

  .filter-value {
    font-size: 12px;
  }

  .remove-filter-btn {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }

  .filter-type {
    font-size: 11px;
  }
}

.flash-countdown {
  display: flex;
  gap: 05px;
}

.flash-time-box {
  background: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.flash-time-box h2 {
  margin: 0;
  font-size: 22px;
  color: red;
  font-family: var(--f1);
  font-weight: 600;
}

.flash-time-box span {
  font-size: 14px;
  color: var(--c2);
  display: block;
  margin-top: 5px;
  font-weight: 700;
}

.ng-giveaway-hero {
            position: relative; width: 100%; height: 350px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); 
            background-size: cover; background-position: center;
            display: flex; align-items: center; justify-content: center; color: white; text-align: center;
        }
        .ng-hero-content h4 { font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; font-weight: 400; text-transform: uppercase; color: white;}
        .ng-hero-content h1 { font-size: 45px; font-weight: 700; margin: 0; letter-spacing: 5px; text-transform: uppercase; color: white;}
        .ng-hero-content p { font-size: 14px; margin-top: 10px; font-weight: 300; }
        .ng-hero-content a{text-decoration: none; color: #fff;}
        
        .ng-giveaway-wrapper {
            position: relative;
            width: 100%;
            min-height: 500px;
            display: flex;
            align-items: center; 
            justify-content: center; 
            padding: 60px 0;
        }
        .ng-main-content {
            max-width: 800px;
            width: 90%;
            text-align: center;
            z-index: 2;
            position: relative;
        }

        .ng-main-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            font-weight: 400;
        }

        .ng-btn-insta {
            background-color: #616400;
            color: white;
            padding: 15px 30px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s ease;
            letter-spacing: 1px;
            border-radius: 2px;
        }
        .ng-btn-insta:hover { background-color: #bfa36a; transform: translateY(-2px); color: #fff; }

        .ng-gift-img {
            position: absolute;
            right: -80px; 
            top: 55%;
            transform: translateY(-50%);
            width: 320px;
            z-index: 1;
            pointer-events: none;
        }

        /* Responsive Settings for Mobile/Tablet */
        @media (max-width: 1024px) {
            .ng-gift-img { width: 250px; right: -60px; }
            .ng-main-content { max-width: 600px; }
        }

        @media (max-width: 768px) {
            .ng-giveaway-hero h1 { font-size: 32px; }
            .ng-giveaway-wrapper { min-height: 450px; padding: 40px 0; }
            .ng-main-content { width: 85%; }
            .ng-main-content p { font-size: 14px; }
            
            .ng-gift-img {
                width: 180px;
                right: -70px;
                top: 85%;
            }
            .ng-btn-insta {
            background-color: #616400;
            color: white;
            padding: 10px 5px;
           
        }
        }

            /* 1. Top Header Section */
        .ng-affiliate-header {
            text-align: center;
            padding: 60px 20px 40px;
            max-width: 900px;
            margin: 0 auto;
        }
        .ng-affiliate-header h1 { 
            color: #616400; 
            font-size: 28px; 
            margin-bottom: 5px; 
            font-weight: 600; 
        }
        .ng-affiliate-header h2 { 
            font-size: 32px; 
            font-weight: 400; 
            margin-bottom: 25px; 
            color: #333;
        }
        .ng-affiliate-header p { 
            font-size: 15px; 
            color: #666; 
            margin-bottom: 30px; 
        }

        /* 2. Main Action Button (Green to Gold) */
        .ng-btn-container { text-align: center; margin-bottom: 80px; }
        .ng-btn-affiliate {
            background-color: #616400;
            color: white;
            padding: 15px 40px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s ease;
            letter-spacing: 1px;
            border-radius: 2px;
        }
        .ng-btn-affiliate:hover { background-color: #bfa36a; color: #fff; }

        /* 3. Details Grid Section */
        .ng-details-section {
            max-width: 1200px;
            margin: 0 auto 100px;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
        }

        .ng-column h3 { 
            font-size: 20px; 
            font-weight: 600; 
            margin-bottom: 25px; 
            color: #222;
        }

        /* List Styling */
        .ng-list { list-style: none; padding: 0; margin: 0; }
        .ng-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #555;
        }
        .ng-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #333;
            font-weight: bold;
        }

        /* Right Column Text Styling */
        .ng-column p { font-size: 14px; color: #555; margin-bottom: 25px; }
        .ng-column strong { color: #333; }

        /* Links Styling */
        .ng-link {
            color: #616400;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
        }
        .ng-link:hover { color: #bfa36a; text-decoration: underline; }

        /* 4. Responsive Design */
        @media (max-width: 900px) {
            .ng-details-section { 
                grid-template-columns: 1fr; 
                gap: 40px;
                padding: 0 20px;
            }
            .ng-affiliate-header h1 { font-size: 22px; }
            .ng-affiliate-header h2 { font-size: 26px; }
        }

        .track-order-section {
        font-family: 'Montserrat', sans-serif;
        text-align: center;
        padding: 60px 20px;
        max-width: 800px;
        margin: 0 auto;
        color: #333;
    }

    .track-order-title {
        font-size: 28px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .track-order-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .track-order-form-container {
        max-width: 450px;
        margin: 0 auto;
    }

    .track-order-input-group {
        margin-bottom: 15px;
        text-align: left;
    }

    .track-order-field {
        width: 100%;
        padding: 15px;
        border: none;
        background-color: #f3f4f9; 
        font-size: 14px;
        color: #555;
        box-sizing: border-box;
        outline: none;
    }

    .track-order-error-msg {
        color: #ff6b6b;
        font-size: 11px;
        margin-top: 5px;
        display: none; 
    }
    .track-order-btn-submit {
        background-color: #616400; 
        color: white;
        border: 2px solid #616400; 
        padding: 15px 40px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        margin-top: 10px;
        width: 220px;
        letter-spacing: 1px;
        transition: all 0.3s ease; 
    }

    .track-order-btn-submit:hover {
        background-color: #bfa36a; 
        border-color: #bfa36a;
        color: #fff; 
    }

    /* Help Button */
    .track-order-btn-help {
        background-color: #2c313a; 
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        margin-top: 30px;
        border-radius: 4px;
    }

    @media (max-width: 480px) {
        .track-order-btn-submit {
            width: 100%;
        }
    }

     .ng-hero-section {
            position: relative;
            width: 100%;
            height: 380px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;}
        
        .ng-hero-content { position: relative; z-index: 2; padding: 20px; }
        .ng-hero-content a{text-decoration: none; color: #fff;}
        .ng-hero-content h4 { font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; font-weight: 400; }
        .ng-hero-content h1 { font-size: 48px; font-weight: 700; margin: 0; letter-spacing: 4px; text-transform: uppercase; }
        .ng-hero-content p { max-width: 650px; margin: 20px auto; font-size: 15px; line-height: 1.6; font-weight: 300; }

        .ng-contact-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .ng-contact-card {
            flex: 1;
            min-width: 300px;
            text-align: center;
            padding: 20px;
        }
        
        .ng-card-icon { 
            font-size: 40px; 
            margin-bottom: 20px; 
            color: #bfa36a; 
            transition: 0.3s;
        }
        

        .ng-contact-card h3 { font-size: 15px; font-weight: 600; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
        .ng-contact-card p { font-size: 13px; color: #666; margin-bottom: 25px; line-height: 1.6; min-height: 50px; }
        
        .ng-btn-main {
            background-color: #616400;
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s ease;
            text-transform: uppercase;
        }
        .ng-btn-main:hover { background-color: #bfa36a; }

        /* 3. FAQ Section */
        .ng-faq-wrapper { max-width: 1200px; margin: 0 auto 100px auto; padding: 0 20px; }
        .ng-faq-header { text-align: center; font-size: 15px; font-weight: 500; margin-bottom: 50px; color: #444; }
        .ng-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; }

        .faq-item { border: 1px solid #eee; margin-bottom: 8px; background: #fff; transition: 0.3s; }
        .faq-btn {
            width: 100%; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center;
            background: none; border: none; cursor: pointer; text-align: left;
            font-family: 'Montserrat', sans-serif; font-size: 14px; transition: 0.3s;
        }

        .faq-item:hover .faq-btn, .faq-item.active .faq-btn { background-color: #bfa36a; color: #fff; }
        .faq-btn .arrow { font-size: 18px; transition: 0.3s; }
        .faq-item.active .arrow { transform: rotate(90deg); }

        .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
        .faq-inner { padding: 20px; font-size: 13.5px; color: #555; line-height: 1.8; border-top: 1px solid #f9f9f9; }

        .faq-inner a {
            color: #bfa36a; 
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

        @media (max-width: 850px) {
            .ng-faq-grid { grid-template-columns: 1fr; }
            .ng-hero-content h1 { font-size: 34px; }
        }

 .ng-wholesale-hero {
            position: relative; width: 100%; height: 350px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); 
            background-size: cover; background-position: center;
            display: flex; align-items: center; justify-content: center; color: white; text-align: center;
        }
        .ng-hero-content h4 { font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; font-weight: 400; text-transform: uppercase; }
        .ng-hero-content h1 { font-size: 48px; font-weight: 700; margin: 0; letter-spacing: 5px; text-transform: uppercase; }
        .ng-hero-content p { font-size: 14px; margin-top: 15px; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
        .ng-hero-content a {color: #fff; text-decoration: none;}

        .ng-wholesale-body {
            max-width: 900px;
            margin: 80px auto;
            padding: 0 20px;
            text-align: center;
        }

        .ng-wholesale-body h2 {
            font-size: 26px;
            font-weight: 600;
            color: #222;
            margin-bottom: 25px;
        }

        .ng-wholesale-body p {
            font-size: 15px;
        
            color: #555;
 
        }
        .ng-btn-wholesale {
            background-color: #616400; 
            color: white;
            padding: 15px 35px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-top: 30px;
            transition: 0.3s ease;
            letter-spacing: 1px;
            border-radius: 2px;
        }

        .ng-btn-wholesale:hover {
            background-color: #bfa36a; 
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .ng-wholesale-hero { height: 300px; }
            .ng-hero-content h1 { font-size: 36px; }
            .ng-wholesale-body h2 { font-size: 22px; }
            .ng-wholesale-body p { font-size: 14px; }
            .ng-btn-wholesale { width: 100%; justify-content: center; box-sizing: border-box; }
        }

          .ng-gift-hero {
            position: relative; width: 100%; height: 320px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); 
            background-size: cover; background-position: center;
            display: flex; align-items: center; justify-content: center; color: white; text-align: center;
        }
        .ng-hero-content h1 { font-size: 42px; font-weight: 700; margin: 0; letter-spacing: 4px; text-transform: uppercase; }
        .ng-hero-content p { font-size: 13px; margin: 15px auto 0; max-width: 600px; font-weight: 300; line-height: 1.6; }
          .ng-hero-content a {color: #fff; text-decoration: none;}
          .ng-hero-content h4{font-size: 13px;}

        .ng-gift-section {
            max-width: 1100px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .ng-gift-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            justify-items: center;
        }

        .ng-card-item {
            text-align: center;
            position: relative;
            max-width: 270px; 
            width: 100%;
        }

        .ng-heart-icon {
            position: absolute;
            top: -20px;
            right: 10px;
            font-size: 18px;
            color: #ccc;
            cursor: pointer;
            transition: 0.3s;
            z-index: 5;
        }
    
        .ng-heart-icon.active {
            color: #616400 !important;
            font-weight: 900;
        }

        .ng-card-img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            margin-bottom: 15px;
            transition: 0.3s;
        }
        .ng-card-item:hover .ng-card-img { transform: translateY(-5px); }

        .ng-card-info h3 {
            font-size: 13px;
            font-weight: 400;
            color: #616400;
            margin: 0 0 5px 0;
        }

        .ng-card-info .price {
            font-size: 15px;
            font-weight: 600;
            display: block;
            margin-bottom: 15px;
        }

        .ng-btn-cart {
            background-color: #616400;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s ease;
            border-radius: 2px;
        }
        .ng-btn-cart:hover {
            background-color: #bfa36a; }

        @media (max-width: 991px) {
            .ng-gift-grid { grid-template-columns: repeat(2, 1fr); } 
        }

        @media (max-width: 600px) {
            .ng-gift-grid { grid-template-columns: 1fr; gap: 50px; } 
            .ng-hero-content h1 { font-size: 32px; }
        }

             .ng-blog-hero {
            position: relative; width: 100%; height: 350px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); 
            background-size: cover; background-position: center;
            display: flex; align-items: center; justify-content: center; color: white; text-align: center;
        }
        .ng-hero-content h1 { font-size: 48px; font-weight: 700; margin: 0; letter-spacing: 5px; text-transform: uppercase; }
        .ng-hero-content h4{font-size: 13px;}
        .ng-hero-content p { font-size: 13px; margin-top: 15px; max-width: 1000px; line-height: 1.6; padding: 0 20px; }
        .ng-hero-content a {color: #fff; text-decoration: none;}

        .ng-blog-nav {
            max-width: 1200px; margin: 40px auto 20px; padding: 0 20px;
            border-bottom: 1px solid #eee; display: flex; gap: 30px;
        }
        .ng-nav-link {
            padding: 10px 0; font-size: 13px; font-weight: 600; text-transform: uppercase;
            color: #888; text-decoration: none; transition: 0.3s;
            border-bottom: 2px solid transparent;
        }
        .ng-nav-link:hover { color: #333; border-bottom: 2px solid #616400; }

        .ng-container { max-width: 1200px; margin: 0 auto 100px; padding: 0 20px; }
        
        .ng-blog-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px;
        }
        .ng-blog-card { border: 1px solid #f0f0f0; transition: 0.3s; background: #fff; }
        .ng-blog-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.05); cursor: pointer;}
        
        .ng-card-img { width: 100%; height: 200px; object-fit: cover; }
        
        .ng-card-body { padding: 20px; text-align: left; }
        .ng-card-body h3 { font-size: 15px; margin: 0 0 10px; color: #616400; font-weight: 600; 
                min-height: 30px;
              max-height: 80px;
              overflow: hidden;
              display: -webkit-box;
              -webkit-line-clamp: 2; /* Limit to 2 lines */
              -webkit-box-orient: vertical;
              line-clamp: 2;
       
            }
        .ng-card-body p { font-size: 13px; color: #666; line-height: 1.5; 
                      margin-bottom: 20px; min-height: 50px; 
              
                      max-height: 120px;
                      overflow: hidden;
                      display: -webkit-box;
                      -webkit-line-clamp: 3; /* Limit to 3 lines */
                      -webkit-box-orient: vertical;
                      line-clamp: 3;}

        .ng-btn-read {
            background-color: #616400; color: white; padding: 10px 20px;
            font-size: 11px; font-weight: 600; text-transform: uppercase;
            text-decoration: none; display: inline-block; transition: 0.3s;
            align-items:end;
        }
        .ng-btn-read:hover { background-color: #bfa36a; }

        .ng-no-posts-box {
            margin-top: 80px;
            padding: 40px 0;
            border-top: 1px solid #f9f9f9;
        }
        .ng-no-posts { font-size: 14px; color: #999; text-align: left; }

        @media (max-width: 768px) { .ng-hero-content h1 { font-size: 32px; } }

          #blog-3 { display: flex; max-width: 1200px; margin: 30px auto; padding: 0 20px; gap: 40px; }
        .main-content { flex: 2.5; }
        .sidebar { flex: 1; }

        .banner-img img { width: 100%; border-radius: 4px; margin-bottom: 25px; }
        .page-title { color: #4b5320; font-size: 26px; font-weight: bold; margin-bottom: 10px; }
        .intro-text { font-size: 14px; color: #555; margin-bottom: 15px; text-align: justify; }

        .perfume-item { display: flex; gap: 25px; margin-bottom: 50px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid #f1f1f1; }
        .perfume-img { flex: 0 0 220px; }
        .perfume-img img { width: 100%; height: auto; border-radius: 4px; border: 1px solid #eee; }
        .perfume-name { color: #4b5320; font-size: 18px; font-weight: bold; margin-bottom: 12px; text-transform: uppercase; }

        .btn-style { 
            display: inline-block; background: #4b5320; color: #fff; padding: 10px 24px; 
            text-decoration: none; font-weight: bold; font-size: 13px; margin-top: 15px;
            transition: 0.3s ease; border-radius: 2px; border: none; cursor: pointer;
        }
        .btn-style:hover { background: #b19540; color: #fff; }

        .sidebar-title { color: #4b5320; font-size: 18px; border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 25px; }
        .side-post { margin-bottom: 35px; text-decoration: none; display: block; }
        .side-post img { width: 100%; margin-bottom: 10px; border: 1px solid #eee; }
        .side-post p { font-size: 14px; font-weight: bold; color: #333; }
        .side-post p {  color: #4b5320; }
        .side-post span { font-size: 12px; color: #aaa; }

        .comments-area { margin-top: 60px; border-top: 1px solid #eee; padding-top: 40px; }
        .comment-header { font-size: 22px; margin-bottom: 30px; color: #333; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-size: 13px; color: #666; margin-bottom: 8px; }
        .form-group input, .form-group textarea { 
            width: 100%; border: 1px solid #e1e1e1; padding: 12px; font-size: 14px; outline: none; 
        }
        .form-group textarea { height: 180px; resize: none; }
        
        .checkbox-group { display: flex; gap: 10px; align-items: flex-start; margin: 20px 0; }
        .checkbox-group input { margin-top: 4px; width: auto !important; }
        .checkbox-group label { font-size: 12px; color: #777; line-height: 1.4; }

        @media (max-width: 768px) { .container { flex-direction: column; } .perfume-item { flex-direction: column; } }
    /* ============================================
   WORDPRESS-STYLE COMMENTS SECTION WITH ARROW
   ============================================ */

/* Comments Section */
.comments-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.comments-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 15px;
}

/* Comment List */
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Comment Item */
.comment {
    padding: 25px 0;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}

.comment:last-child {
    border-bottom: 1px solid #e8e8e8;
}

/* Comment Body */
.comment-body {
    position: relative;
    padding-left: 0;
}

/* Arrow Icon for Replies */
.reply-arrow-icon {
    position: absolute;
    left: -35px;
    top: 5px;
    color: #999;
    z-index: 1;
}

.reply-arrow-icon svg {
    display: block;
}

/* Children comments should have space for arrow */
.children .comment-body {
    padding-left: 0;
}

/* Comment Meta */
.comment-meta {
    margin-bottom: 15px;
}

.comment-author.vcard {
    display: inline;
}

.comment-author .fn {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    font-style: normal;
}

.comment-author .says {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin-left: 5px;
}

/* Post Author Badge */
.bypostauthor .comment-author .fn::after {
    content: " (Author)";
    font-size: 12px;
    font-weight: 400;
    color: #0073aa;
    margin-left: 5px;
}

/* Comment Metadata */
.comment-metadata {
    display: inline;
    margin-left: 10px;
}

.comment-metadata a {
    font-size: 13px;
    color: #999;
    text-decoration: none;
}

.comment-metadata a:hover {
    color: #666;
}

.comment-metadata time {
    font-size: 13px;
    color: #999;
}

/* Comment Content */
.comment-content {
    margin: 15px 0;
}

.comment-content p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

/* Reply Link */
.reply {
    margin-top: 10px;
}

.comment-reply-link {
    font-size: 14px;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.comment-reply-link:hover {
    color: #333;
}

/* Children (Nested Comments) */
.children {
    list-style: none;
    margin: 0;
    padding-left: 60px;
    border-left: 2px solid #e8e8e8;
    position: relative;
}

.children .comment {
    padding: 25px 0 25px 20px;
    border-bottom: 1px solid #e8e8e8;
}

.children .comment:last-child {
    border-bottom: 1px solid #e8e8e8;
}

/* Depth Levels */
.depth-1 {
    /* Parent level - no arrow */
}

.depth-1 .reply-arrow-icon {
    display: none;
}

.depth-2 {
    /* First reply level - show arrow */
}

.depth-3 {
    padding-left: 40px;
}

/* ============================================
   COMMENT FORM
   ============================================ */

.comment-respond {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px 20px;
    border-top: 1px solid #e8e8e8;
}

.comment-reply-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.comment-reply-title small {
    font-size: 14px;
    font-weight: 400;
    margin-left: 10px;
}

.comment-reply-title small a {
    color: #666;
    text-decoration: underline;
}

.comment-reply-title small a:hover {
    color: #333;
}

.logged-in-as {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Comment Form */
.comment-form {
    margin-top: 20px;
}

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

.comment-form-comment label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 14px;
}

.comment-form-comment textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    line-height: 1.5;
    color: #333;
}

.comment-form-comment textarea:focus {
    outline: none;
    border-color: #999;
}

/* Form Submit */
.form-submit {
    margin-bottom: 0;
}

.form-submit .submit {
    background-color: #1a1a1a;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit .submit:hover:not(:disabled) {
    background-color: #333;
}

.form-submit .submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Login Notice */
.login-notice {
    background-color: #fffbea;
    border: 1px solid #f9e79f;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.login-notice p {
    margin: 0;
    color: #856404;
    font-size: 14px;
}

/* Error Message */
.error-message {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Character Count */
.char-count {
    display: block;
    text-align: right;
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}

/* Loading & No Comments */
.loading,
.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .comments-section,
    .comment-respond {
        padding: 0 15px;
    }

    .children {
        padding-left: 40px;
    }

    .children .comment {
        padding-left: 15px;
    }

    .reply-arrow-icon {
        left: -30px;
    }

    .comment-metadata {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    .form-submit .submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .children {
        padding-left: 30px;
        border-left: 1px solid #e8e8e8;
    }

    .children .comment {
        padding-left: 10px;
    }

    .reply-arrow-icon {
        left: -25px;
        display: none; /* Hide arrow on very small screens */
    }

    .comment-author .fn {
        font-size: 14px;
    }

    .comment-content p {
        font-size: 14px;
    }
}

.notfound-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.notfound-card {
  background: #fff;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.notfound-card h1 {
  font-size: 96px;
  font-weight: 800;
  color: var(--c1);
  margin-bottom: 10px;
}

.notfound-card h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.notfound-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.home-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--c1);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}


.no-orders-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--c1) 0%, var(--c1) 100%);
}

.no-orders-content {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Illustration */
.no-orders-illustration {
  position: relative;
  margin-bottom: 40px;
  display: inline-block;
}

.box-icon {
  font-size: 100px;
  color: var(--c1);
  animation: bounce 2s infinite;
}

.box-icon i {
  display: block;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.floating-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--c1);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 3s infinite ease-in-out;
}

.dot-1 {
  top: 0;
  left: 50%;
  animation-delay: 0s;
}

.dot-2 {
  top: 50%;
  right: 0;
  animation-delay: 1s;
}

.dot-3 {
  bottom: 0;
  left: 50%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate(10px, -10px);
    opacity: 1;
  }
}

/* Text Content */
.no-orders-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.no-orders-text p {
  font-size: 16px;
  color: var(--c1);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Action Buttons */
.no-orders-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c1) 0%, var(--c1) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

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

.btn-secondary:hover {
  background: var(--c1);
  color: white;
  transform: translateY(-2px);
}

.btn-primary i,
.btn-secondary i {
  font-size: 20px;
}

/* Additional Info */
.no-orders-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--c1);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c1);
  font-size: 14px;
}

.info-item i {
  font-size: 20px;
  color: var(--c1);
}

/* Responsive */
@media (max-width: 768px) {
  .no-orders-content {
    padding: 40px 20px;
  }

  .no-orders-text h2 {
    font-size: 24px;
  }

  .no-orders-text p {
    font-size: 14px;
  }

  .box-icon {
    font-size: 80px;
  }

  .no-orders-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .no-orders-info {
    gap: 15px;
  }

  .info-item {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .no-orders-info {
    flex-direction: column;
    gap: 10px;
  }
}

/* Desktop - both columns visible */
@media (min-width: 768px) {
  #acd_col, #nts_col {
    display: block !important;
  }
}

/* Mobile - toggle visibility */
@media (max-width: 767px) {
  .accords_btn {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

  .accords_btn a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
  }

  .accords_btn a.active {
    background: var(--c2);
    color: white;
    border-color: var(--c2);
  }

  #acd_col.hide,
  #nts_col.hide {
    display: none;
  }

  #acd_col.show,
  #nts_col.show {
    display: block;
  }
  
  /* Make both columns full width on mobile */
  #acd_col, #nts_col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}
/* ============================================
   END OF CSS
   ============================================ */
   