.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  overflow-x: hidden;
  font-family: "Sohne", sans-serif;
  font-weight: 100;
}

body::-webkit-scrollbar {
  width: 0px;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
  color: var(--primeColor);
  text-decoration: none;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

a:hover,
a:focus,
a:active {
  color: #1869f4;
  text-decoration: none;
  outline: 0;
}

a:visited {
  text-decoration: none;
  outline: 0;
}

textarea {
  outline: none !important;
  height: 150px;
}

b,
strong {
  font-weight: 800;
}

li {
  list-style: none;
}

:root {
  --primeColor: #ba2f12;
  --secondColor: #cba058;
  --black: #000;
  --red: #b82e11;
  --dark: #232323;
  --white: #fff;
  --width: 96vw;
  --transition: 1s cubic-bezier(.19, 1, .22, 1);
}

body {
  background-color: var(--black);
}

.uppercase {
  text-transform: uppercase;
}

.fw_800 {
  font-weight: 800;
}

.fw_700 {
  font-weight: 700;
}

.primeColor {
  color: var(--primeColor) !important;
}

.black {
  color: var(--black);
}

.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6,
.light a,
.light p,
.light i,
.light span,
.light li,
.light {
  color: var(--white);
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark a,
.dark p,
.dark i,
.dark span,
.dark,
.black {
  color: var(--dark) !important;
}

.theme_btn {
  color: var(--white) !important;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  padding: 0;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  width: max-content;
  background-color: transparent;
  border: none;
}

.theme_btn .btnTextWrap {
  width: max-content;
  text-align: center;
  height: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.theme_btn .btnTextWrap span {
  position: absolute;
  margin: 0px 0;
  left: 0;
  transition: var(--transition);
  right: 0;
}

.theme_btn .btnTextWrap span:nth-child(1) {
  top: 0;
  position: relative;
}

.theme_btn .btnTextWrap span:nth-child(2) {
  top: 25px;
}

.theme_btn:hover .btnTextWrap span:nth-child(1) {
  top: -14px;
}

.theme_btn:hover .btnTextWrap span:nth-child(2) {
  top: -4px;
}


.themeBtn {
  padding: 20px 25px;
  backdrop-filter: blur(10px);
  background-color: #ffffff0a;
  letter-spacing: 5px;
  border: none !important;
}

.themeBtn .top_left:before {
  content: "";
  width: 8.5%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transition: .9s;
  left: 0;
}

.themeBtn .top_left:after {
  content: "";
  width: 1px;
  height: 30%;
  background-color: #fff;
  position: absolute;
  transition: 1s;
  left: 0;
}

.themeBtn .top_right:before {
  content: "";
  width: 8.5%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transition: .9s;
  right: 0;
}

.themeBtn .top_right:after {
  content: "";
  width: 1px;
  height: 30%;
  background-color: #fff;
  position: absolute;
  transition: 1s;
  right: 0;
}

.themeBtn .bottom_left:before {
  content: "";
  width: 8.5%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transition: .9s;
  left: 0;
  bottom: 0;
}

.themeBtn .bottom_left:after {
  content: "";
  width: 1px;
  height: 30%;
  background-color: #fff;
  position: absolute;
  transition: 1s;
  left: 0;
  bottom: 0;
}

.themeBtn .bottom_right:before {
  content: "";
  width: 8.5%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transition: .9s;
  right: 0;
  bottom: 0;
}

.themeBtn .bottom_right:after {
  content: "";
  width: 1px;
  height: 30%;
  background-color: #fff;
  position: absolute;
  transition: 1s;
  right: 0;
  bottom: 0;
}

.themeBtn:hover .top_left:before,
.themeBtn:hover .top_right:before,
.themeBtn:hover .bottom_left:before,
.themeBtn:hover .bottom_right:before {
  width: 100% !important;
}

.themeBtn:hover .top_left:after,
.themeBtn:hover .top_right:after,
.themeBtn:hover .bottom_left:after,
.themeBtn:hover .bottom_right:after {
  height: 100% !important;
}


.bg_primeColor {
  background-color: var(--primeColor);
}

.letter_spacing5px {
  letter-spacing: 5px;
}

.fs_70px {
  font-size: 70px;
}

.fs_50px {
  font-size: 50px;
}

.fs_40px {
  font-size: 40px;
}
.fs_30px {
  font-size: 30px;
}


.fs_20px {
  font-size: 20px;
}

.fs_16px {
  font-size: 16px;
}


.full-screen-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  background-color: var(--secondColor);
}

.full-screen-menu-overlay.menu-open {
  pointer-events: auto;
  visibility: visible;
}

.menu-nav-links {
  display: grid;
  gap: 20px;
  /* margin-top: 100px; */
  text-align: left;
  height: 100%;
  align-content: center;
      padding: 20px;
}

.menu-link-wrapper {
  overflow: hidden;
  display: block;
}

.menu-nav-links a {
  display: inline-block;
  text-decoration: none;
  transform: translateY(100%);
  line-height: 1.1;
}

.hamburger-menu-trigger {
  background: rgb(6, 6, 6);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1000;
  position: relative;
  padding: 10px;
  /* margin: auto; */
}

.hamburger-menu-trigger span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu-trigger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu-trigger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu-trigger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

h1,
h2,
h3 {
  font-family: "Fraunces";
  font-weight: 100;
}

.desktop_menu {
  padding-left: 20px;
	z-index:99 !important;
}

.desktop_menu .theme_btn {
  position: relative;
  padding-left: 20px;
}

.desktop_menu .theme_btn:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.page-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 999999;
  display: none;
  pointer-events: none;
}

section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.hero-banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner-logo {
    position: absolute;
    top: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    bottom: 4%;
}
.hero-banner .themeBtn {
    z-index: 3;
    bottom: 10%;
    right: 5%;
    padding: 3px 20px;
    letter-spacing: 0;
}


section.collections .collection_logo {
  top: 30%;
  transform: translateY(-50%);
  width: 300px !important;
  width: 300px;
}

section.collections .text_wrap {
  bottom: 100px;
}

section.collections .coll_txt1 {
  padding-right: 9%;
}

section.collections .coll_txt2 {
  padding-right: 23%;
}






/* ----------------------------------------------------
   SPOTLIGHT BEAM EFFECT (Cone Light from Top)
---------------------------------------------------- */
.collections .light-beam {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  filter: blur(30px);
}

/* Ceiling Cone Beam Light */
.collections .light-beam::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.08) 65%,
      transparent 100%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
  filter: blur(12px);
}

/* Floor Light Reflection Ellipse */
.collections .light-beam::after {
  content: '';
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55) 0%, transparent 70%);
  filter: blur(8px);
}


/* ----------------------------------------------------
   HOVER SWITCH LOGIC
---------------------------------------------------- */



/* .collections .col-lg-4 img {
  filter: brightness(0.7) grayscale(30%);
  transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collections .row:hover .col-lg-4:nth-child(2) .light-beam {
  opacity: 0;
}
 
.collections .col-lg-4:hover img {
  filter: brightness(1) grayscale(0%) !important;
}

.collections .col-lg-4:hover .light-beam {
  opacity: 0.5 !important;
} */


.collections .col-lg-4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #0000005e;
  transition: .5s;

}

.collections .col-lg-4:hover:before , .collections .col-lg-4:nth-child(2):before {
  content: "";

  background: #00000000;

}

.wk_left {
  left: 41% !important;
}

.wk_right {
  right: 41% !important;
}

.wk_col_cont {
  bottom: 0% !important;
  transition: .5s;
  opacity: 0;
}

.collections .col-lg-4:hover .wk_col_cont {
  opacity: 1;
  bottom: 40% !important
}

a.wk_c_btn {
  letter-spacing: 4px;
  color: #fff;
}

/* accessosiries page start  */
section.product_section {
  padding: 4%;
}

section.product_section .col-lg-6 {
  padding: 10px;
  overflow: hidden;
}

.wk_product_des {
  z-index: 1;
  text-align: center;
  bottom: 5%;
  transition: .5s;
}
section.product_section .col-lg-6:hover .wk_product_des {
  bottom: 7%;
}
.wk_c_btn img {
  transition: .5s;
}

.wk_c_btn:hover img {
  transform: rotate(45deg);
}

/* contact page css */
.contact-section {
  height: 100vh;
  padding: 100px 0;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;

}

.info-title , .footer {
  color: #fff;
}

.social-icons a {

  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d7b17d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;

}

.contact-form {
  background: rgb(255 234 234 / 9%);
  padding: 35px;
  border: 1px solid #333;
  backdrop-filter: blur(3px);
}

.form-control,
.form-select {
  background: #000000;
  border: 1px solid #333;
  color: #CECECE;
  height: 55px;
  border-radius: 0;
  font-weight: 300;
  font-size: 20px;
}

.form-control::placeholder {
  opacity: 1;
  color: #CECECE;

}

.form-control:focus,
.form-select:focus {

  background: #111;
  color: #fff;
  border-color: #b99868;
  box-shadow: none;

}

textarea.form-control {

  height: 150px;
  resize: none;

}

.btn-submit {
  background: none;
  border: none;
  color: #fff;
  letter-spacing: 4px;
  padding: 0;
  margin-top: 20px;
  font-weight: 300;
}

.footer {
  font-family: 'Fraunces';
  background: #0b0b0b;
  padding: 90px 0 30px;

}

.footer-logo {

  max-width: 230px;
  margin: auto;
  display: block;
  margin-bottom: 50px;

}

.footer-menu {

  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;

}

.footer-menu a {

  color: #ddd;
  text-decoration: none;

}

.contact-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;


}


.footer-bottom {

  display: flex;
  justify-content: space-between;
  align-items: center;

}

.footer-social {

  display: flex;
  gap: 12px;

}

.footer-social a {

  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;

}
.my_container {
    max-width: 1300px;
    margin: auto;
}
.footer-social img {
    filter: invert(1);
}
.wk_line {
    height: 1px;
    background: #ffffff6b;
    width: 40%;
}
.footer hr {

  border-color: #ffffff6b;

}


/* product detail page  */
.main_banner {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.product-banner-content {
    opacity: 0;
    visibility: hidden;
}
.wk_video-wrapper video {
    height: 100%;
    width: 100%;
    position: relative;
}


.wk_product_banner .my_container {
    max-width: 100%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    background-size: cover;
    background-position: center;
	height:90%;
	z-index:1;
}
.wk_product_banner .my_container1 {
    max-width: 100%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    background-size: cover;
    background-position: center;
	 
	 
}


.wk_content_box {
    width: 70%;
    margin: 180px 0;
}
.row.wk_pro_con {
    width: 1400px;
}
.wk_mt100 {
    margin-top: 25%;
}