@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --clr-primary: #C8A47B;
  --clr-primary-dark: #b38d62;
  --clr-dark: #222222;
  --clr-light: #555;
  --clr-white: #fff;
  --clr-lightbg: #FAF6F2;
}

body {
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
  color: var(--clr-dark);
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
  color: var(--clr-green);
}

a:hover {
  text-decoration: none;
  color: var(--clr-headingDark);
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  max-width: 100%;
}

main {
  overflow: hidden;
}

p {
  color: var(--clr-light);
  line-height: 28px;
}

/* Button */

.ThemeBtn {
  border: 0;
  padding: 10px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 50px;
  background: var(--clr-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-white);
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
}

.ThemeBtn:hover {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
}

/* Button end */

.verifyInput {
  position: relative;
  width: 100%;
  max-width: 470px;
}

.verifyInput input {
  min-height: 60px;
  border-radius: 50px;
  padding: 5px 25px;
  padding-right: 170px;
  border: 0;
  outline: none;
}

.verifyInput input:focus {
  box-shadow: none;
}

.verifyInput .ThemeBtn {
  position: absolute;
  min-height: 50px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
  transform: translateY(0);
}

.hide-nav {
  transform: translateY(-120%) !important;
  -webkit-transform: translateY(-120%) !important;
}

.sticky-header {
  background: var(--clr-dark);
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

header .navbar {
  padding: 20px 0;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

.navbar-nav {
  gap: 30px;
  align-items: center;
}

.navbar-brand img {
  width: 120px;
  min-width: 120px;
}

.navbar-nav .nav-link {
  padding: 5px 0 !important;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-white);
  position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--clr-primary);
}

/* header end */

.section-details h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}

.section-details h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  position: relative;
  width: fit-content;
}

.section-details p {
  line-height: 26px;
}

.custom-space {
  padding: 80px 0;
}

/* scroll top */

#scrollTotop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 25px;
  right: -50px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--clr-primary-dark);
  z-index: 99;
  box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
  transition: all 0.3s ease-in-out;
  border: 0;
  outline: none;
}

#scrollTotop.showscroll {
  right: 25px;
}

.ScrollArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ScrollArrow i {
  font-size: 20px;
  color: var(--clr-white);
}

/* scroll top */

.CenterInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sectionInfo h6 {
  font-size: 16px;
  letter-spacing: 5px;
  color: var(--clr-primary);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.sectionInfo h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
}

.sectionInfo .divider {
  display: inline-flex;
  height: 4px;
  width: 64px;
  background: var(--clr-primary);
  border-radius: 10px;
  position: relative;
  margin: 20px 0;
  margin-left: 20px;
}

.sectionInfo .divider:after,
.sectionInfo .divider:before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--clr-primary);
  top: 0;
  left: -10px;
  border-radius: 100%;
}

.sectionInfo .divider:before {
  left: -20px;
}

.light-bg {
  background: var(--clr-lightbg);
}

/* Product Card */

.productCard {
  background: var(--clr-white);
  border-radius: 15px;
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  overflow: hidden;
}

.productItem {
  padding: 30px;
  text-align: center;
}

.productItem img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.productName {
  padding: 20px;
  text-align: center;
  background: var(--clr-primary);
  color: var(--clr-white);
  text-transform: uppercase;
}

.productName h6 {
  font-size: 13px;
  letter-spacing: 3px;
}

.productName h4 {
  font-size: 14px;
  margin: 0;
}

.swiper-button-prev,
.swiper-button-next {
  width: 30px;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-primary);
  border-radius: 100%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 12px;
  color: var(--clr-white);
  font-weight: bold;
}

/* footer */

footer {
  background: var(--clr-dark);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-row .brandLogo {
  text-align: center;
  margin: 0 0 30px;
}

.footer-row .brandLogo img {
  max-width: 200px;
}

.social-links .social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-links {
  border-bottom: 1px solid #ffffff21;
  padding-bottom: 30px;
}

.social-links .social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.social li a {
  color: var(--clr-white);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-row .description {
  text-align: center;
  color: #ddd;
  font-weight: 300;
  margin: 0 0 25px;
}

.copyright {
  padding: 10px 15px;
  background: var(--clr-primary);
}

.copyright p {
  color: var(--clr-white);
  margin: 0;
  font-weight: 300;
  font-size: 13px;
}

/* footer end */

/* welcome Modal  */

#WelcomeModal {
  background: rgb(0 0 0 / 40%);
  backdrop-filter: blur(15px);
}

#WelcomeModal .modal-content {
  background: transparent;
  border: 0;
}

#WelcomeModal .modal-content .modal-body {
  padding: 0;
  text-align: center;
}

.welcome-modalDetails {
  color: var(--clr-white);
}

.welcome-modalDetails .brandLogo img {
  width: 150px;
}

.welcome-modalDetails .brandLogo {
  margin: 0 0 20px;
}

.welcome-modalDetails h2 {
  font-size: 40px;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.welcome-modalDetails h5 {
  font-size: 18px;
  margin: 0 0 15px;
}

.welcome-modalDetails h6 {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: normal;
}

.welcome-modalDetails .btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.welcome-modalDetails p {
  font-size: 13px;
  color: #ddd;
}

.welcome-modalDetails p a {
  display: block;
  text-decoration: underline;
  color: var(--clr-primary);
}

/* welcome Modal end*/

/* Verification Popup */

.VerificationModal {
  background: rgb(0 0 0 / 30%);
  backdrop-filter: blur(10px);
}

.VerificationModal .modal-content {
  background: transparent;
  border: 0;
  border-radius: 20px;
  padding: 0 5px;
}

.popupClose-btn {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  outline: none;
}

.Verification-body-wrapper {
  display: flex;
}

.Verification-body-wrapper .thumbImg {
  width: 40%;
  min-width: 40%;
  padding: 40px;
}

.Verification-body-wrapper .PopContent {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
}

.Verification-body-wrapper .PopContent h2 {
  font-size: 40px;
  margin: 0 0 15px;
  color: #fff;
}

.Verification-body-wrapper .PopContent h6 {
  font-size: 24px;
  font-weight: normal;
  margin: 0 0 30px;
  color: #fff;
}

.verification-inputBox {
  width: 100%;
}

.verificationContent {
  text-align: center;
  width: 100%;
}

.verificationContent .verificationIcon {
  width: 100px;
  margin: 0 0 20px;
}

/* Verification Popup end */