@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap");
:root {
  --blue: #1e90ff;
  --white: #ffffff;
  --themebg:#810909;
  --themebg2:#ec9049;
  --Jost: "Montserrat", sans-serif;
  --heading: "Zalando Sans Expanded", sans-serif;
  --subtitla:#94703C;
  --darkco:#0b0b0b;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--Jost);
  background: #fff;
}

a {
  text-decoration: none;
}

.header_top {
  padding: 5px 0;
}
.header_top .logo_style {
  color: var(--white);
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 992px) {
  .fixedtop {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  .navbar-nav {
    justify-content: space-between;
  }
  .header_top a {
    color: #fff;
  }
  .header_top .social_media_header a {
    color: #fff;
  }
  .header_top .menu_style {
    background: none !important;
  }
  .header_top .menu_style .nav-link {
    color: #fff !important;
  }
  .header_top .menu_style .nav-link:hover {
    text-decoration: underline;
  }
  .header_top:hover {
    background: #fff !important;
  }
  .header_top:hover a {
    color: #000;
  }
  .header_top:hover .menu_style .nav-link {
    color: #000000 !important;
  }
  .header_top:hover .social_media_header a {
    color: #000;
  }
  .header_top:hover .logo_img {
    filter: none;
  }
  .header_top:hover .searchbox input::-webkit-input-placeholder {
    color: #000000;
  }
  .header_top:hover .searchbox input:-moz-placeholder {
    color: #000000;
  }
  .header_top:hover .searchbtn {
    color: #000;
  }
  .page_st .header_top a {
    color: #000;
  }
  .page_st .header_top .menu_style .nav-link {
    color: #000000 !important;
  }
  .navsty {
    background: #fff !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .navsty a {
    color: #000000;
  }
  .navsty .menu_style .nav-link {
    color: #000000 !important;
  }
  .navsty .social_media_header a {
    color: #000;
  }
  .navsty .logo_img {
    filter: none;
  }
  .navsty .searchbox input::-webkit-input-placeholder {
    color: #000000;
  }
  .navsty .searchbox input:-moz-placeholder {
    color: #000000;
  }
  .navsty .searchbox .searchbtn {
    color: #000;
  }
}
.logo_img {
  margin: auto;
  text-align: center;
}
.logo_img img {
  max-height: 60px;
}

.menu_style {
  /* Mega menu */
  /* Navbar icons */
}
.menu_style .dropdown-menu {
  opacity: 0;
  transform: translateY(0px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.menu_style .dropdown-menu.show {
  animation: dropdownFade 0.3s ease forwards;
  visibility: visible;
}
.menu_style .nav-item.dropdown.dropdown-mega {
  position: static;
}
.menu_style .nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 0%;
}
.menu_style .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.menu_style .navbar-toggler:focus {
  box-shadow: none;
}
.menu_style .navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 0px;
  transition: transform 0.2s ease, background 0.2s ease;
  left: 0;
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger span:last-child {
  bottom: 10%;
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  width: 0;
  left: 50%;
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}
.menu_style .icons {
  display: inline-flex;
  margin-left: auto;
}
.menu_style .icons a {
  color: #ccc !important;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.menu_style .icons a:hover {
  color: #fff;
  text-shadow: 0 0 30px #fff;
}

/* scroll ke baad apply hone wali class */
/* Keyframes for smooth slideDown */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Large screens */
@media (min-width: 992px) {
  .menu_style .navbar-nav {
    gap: 15px;
  }
  .menu_style .nav-link {
    text-transform: uppercase;
    font-weight: 400;
  }
  .navbar {
    padding: 0;
  }
  .navbar .dropdown-menu {
    line-height: initial;
    display: block;
    opacity: 0;
    transform: translateY(0px);
    visibility: hidden;
  }
  .dropdown:hover > .dropdown-menu,
  .dropend:hover > .dropdown-menu {
    animation: dropdownFade 0.3s ease forwards;
    visibility: visible;
  }
  .dropdown:hover > .dropdown-menu {
    margin-top: 0rem;
  }
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0;
  }
  .banner_style .carousel-item {
    background: #000;
  }
  .banner_style .carousel-item img {
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0.7;
  }
}
/* If you want different width for large screens */
@media only screen and (max-width: 768px) {
  .offcanvas.offcanvas-end,
  .offcanvas.offcanvas-start {
    max-width: 80%;
  }
  .searchbox {
    position: relative;
  }
  .searchbox .form-control {
    background: transparent;
    font-size: 14px;
    height: 42px;
    padding-right: 40px;
  }
  .searchbox .searchbtn {
    border: 0 !important;
    background: none !important;
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    color: #000000;
    z-index: 1;
  }
}
.title_head {
  text-align: center;
  margin-bottom: 2em;
}
.title_head h2 {
  font-size: 2.2rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  font-family: var(--heading);
  color: var(--darkco);
  text-transform: uppercase;
  padding: 0px;
  margin: 0;
}
.title_head p {
  margin: 0;
  padding: 0;
  color: var(--subtitla);
  font-size: 12px;
}

#backToTopBtn {
  position: fixed;
  width: 32px;
  height: 32px;
  line-height: 32px;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  display: none; /* Hidden by default */
  z-index: 1000;
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background: #555;
}

.product_list {
  display: block;
  text-align: center;
  background: #fff;
  overflow: hidden;
  padding: 0px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.product_list img {
  width: 100%;
  height: clamp(180px, 25vw, 250px);
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.product_list h6 {
  font-size: 1rem;
  font-weight: 400;
  border-bottom: #555 1px solid;
  display: inline-block;
  margin: 0;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product_list:hover {
  transform: translateY(-5px);
}
.product_list:hover h6 {
  color: #aa0202;
}
.product_list:hover img {
  transform: scale(1.05);
}

.product_list_page {
  display: block;
  text-align: center;
  background: #fff;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.product_list_page .img_bx {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  height: clamp(220px, 32vw, 400px);
  overflow: hidden;
  background: #f4f4f4;
}
.product_list_page img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.product_list_page .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
}
.product_list_page .new_bx {
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 2;
  background: #ff0000;
  color: #fff;
  border-radius: 25px;
  padding: 0.1em 0.8em;
  font-size: 12px;
}
.product_list_page h6 {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 10px 0 0;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product_list_page p {
  font-size: 0.8em;
  color: #212529;
  font-weight: 300;
  margin: 0;
  text-transform: capitalize;
}
.product_list_page:hover {
  transform: translateY(-5px);
}
.product_list_page:hover h6 {
  color: #aa0202;
}
.product_list_page:hover .img-main {
  opacity: 0;
}
.product_list_page:hover .img-hover {
  opacity: 1;
  transform: scale(1);
}

.filer_style .accordion-button {
  padding-left: 5px;
}
.filer_style .accordion-body {
  padding-left: 5px;
}
.filer_style .noUi-horizontal {
  height: 8px;
}
.filer_style .noUi-horizontal .noUi-handle {
  height: 16px;
}
.filer_style .noUi-handle:after, .filer_style .noUi-handle:before {
  top: 0;
}

@media (max-width: 678px) {
  .product_list {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  .product_list img {
    height: clamp(200px, 25vw, 280px);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.footer_style {
  background: var(--darkco);
  color: var(--white);
  padding: 50px 0;
  font-family: var(--Jost);
  animation: fadeUp 0.8s ease-in-out;
  border-top: rgba(51, 51, 51, 0.2) 1px solid;
}
.footer_style h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.footer_style h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.247);
  margin-top: 8px;
}
.footer_style ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_style ul li {
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}
.footer_style ul li:nth-child(2) {
  animation-delay: 0.5s;
}
.footer_style ul li:nth-child(3) {
  animation-delay: 0.7s;
}
.footer_style ul li:nth-child(4) {
  animation-delay: 0.9s;
}
.footer_style ul li:nth-child(5) {
  animation-delay: 1.1s;
}
.footer_style ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}
.footer_style ul li a:hover {
  color: #1e90ff;
}
.footer_style ul li a:hover::after {
  width: 100%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.social_media {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}
.social_media a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: #fff;
  border-radius: 50%;
  font-size: 1em;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social_media a:hover {
  background: rgb(255, 255, 255);
  color: var(--darkco);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.story_bx {
  position: relative;
  overflow: hidden;
}
.story_bx .story_bx_inn {
  position: absolute;
  inset: 0; /* top right bottom left = 0 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  color: #fff;
  padding: 15px;
}
.story_bx .story_bx_inn h4 {
  margin-top: 0.5em;
  color: #000;
  font-size: 2.5em;
  font-family: var(--heading);
  text-transform: uppercase;
}
.story_bx img {
  width: 100%;
  display: block;
}

.theme-dark-btn {
  position: relative;
  display: inline-block;
  padding: 0.5em 2em;
  color: #fff;
  text-decoration: none;
  border: 2px solid var(--darkco);
  overflow: hidden;
  z-index: 1;
  transition: color 0.35s ease;
}
.theme-dark-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--darkco);
  z-index: -1;
  transform: translateX(0);
  transition: transform 0.35s ease;
}
.theme-dark-btn:hover {
  color: var(--darkco);
}
.theme-dark-btn:hover::before {
  transform: translateX(100%); /* slide out */
}

.theme-light-btn {
  position: relative;
  display: inline-block;
  padding: 0.5em 2em;
  color: var(--darkco);
  text-decoration: none;
  border: 2px solid #fff;
  overflow: hidden;
  z-index: 1;
  transition: color 0.35s ease;
}
.theme-light-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
  transform: translateX(0);
  transition: transform 0.35s ease;
}
.theme-light-btn:hover {
  color: #fff;
}
.theme-light-btn:hover::before {
  transform: translateX(100%);
}

.owl_gallery {
  background: #F7ECE1;
  padding: 3em 0;
}
.owl_gallery .r_box {
  position: relative;
  color: #000;
  text-align: center;
  display: block;
}
.owl_gallery .r_box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.24) 40%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 2;
}
.owl_gallery .r_box h6 {
  margin-top: 0.5em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  padding: 10px;
  z-index: 3;
}
.owl_gallery .r_box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.owl_gallery .r_box:hover h6 {
  text-decoration: underline;
}

.page_st .header_top {
  position: relative;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.product_page h1 {
  font-size: 2em;
}

a {
  color: #000;
}

.showzoom {
  width: 400px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

#show-img {
  width: 400px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

.small-img {
  width: 350px;
  height: 70px;
  margin-top: 10px;
  position: relative;
  left: 25px;
}

.small-img .icon-left, .small-img .icon-right {
  width: 12px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.small-img .icon-left {
  transform: rotate(180deg);
}

.small-img .icon-right {
  right: 0;
}

.small-img .icon-left:hover, .small-img .icon-right:hover {
  opacity: 0.5;
}

.small-container {
  width: 310px;
  height: 70px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.small-container div {
  width: 800%;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
}

.small-container .show-small-img {
  width: 70px;
  height: 70px;
  margin-right: 6px;
  cursor: pointer;
  float: left;
  -o-object-fit: cover;
     object-fit: cover;
}

.small-container .show-small-img:last-of-type {
  margin-right: 0;
}

#big-img {
  -o-object-fit: contain;
     object-fit: contain;
}

.pd_list h5 {
  color: #aa0202;
  margin-bottom: 1em;
}
.pd_list ul {
  margin: 0;
  padding: 0;
}
.pd_list ul li {
  display: block;
  width: 50%;
  margin-bottom: 0.5em;
}
.pd_list ul li span {
  font-weight: 300;
}
.pd_list h6 {
  margin: 0;
  padding: 0 0 0.1em 0;
  text-transform: capitalize;
}

.list_Bx {
  margin-top: 1em;
}
.list_Bx ul {
  margin: 0;
  padding-left: 0.8em;
}
.list_Bx ul li {
  font-size: 12px;
  line-height: 22px;
}

.product_Datails {
  font-size: 0.9em;
}

.hwork {
  background: #eaeaea;
  padding: 1em;
  text-align: center;
}
.hwork h5 {
  margin: 6px 0;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .showzoom {
    width: 100%;
    height: auto;
  }
  #show-img {
    width: 100%;
  }
  .small-img {
    width: 300px;
  }
}
.video-wrap {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.video-wrap .video-wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-wrap .video_bx_inn {
  position: absolute;
  inset: 0; /* top right bottom left = 0 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  color: #fff;
  padding: 15px;
}
.video-wrap .video_bx_inn h4 {
  margin-top: 0.5em;
  color: #000;
  font-size: 2.5em;
  font-family: var(--heading);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .home_banner_smma .story_bx {
    height: 50vh;
    position: relative;
    overflow: hidden;
  }
}
.size-picker {
  display: flex;
  gap: 10px;
}
.size-picker input {
  display: none;
}
.size-picker label {
  padding: 8px 14px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.size-picker label:hover {
  border-color: var(--bs-primary);
}
.size-picker input:checked + label {
  background: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
}
.qty-box input {
  width: 55px;
  text-align: center;
  border: none;
  font-weight: 600;
  outline: none;
}
.qty-box .qty-btn {
  background: #f8f9fa;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s;
}
.qty-box .qty-btn:hover {
  background: var(--bs-primary);
  color: #fff;
}
.qty-box .qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-price .sale-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
}
.product-price .regular-price {
  font-size: 0.95rem;
  color: #6c757d;
  text-decoration: line-through;
}

.login-card {
  border-radius: 16px;
  overflow: hidden;
}
.login-card .login-left {
  background: #fff;
  padding: 2.5rem;
}
.login-card .login-left h3 {
  font-weight: 700;
}
.login-card .login-left p {
  color: #6c757d;
}
.login-card .login-left .form-control {
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
}
.login-card .login-left .form-control:focus {
  box-shadow: none;
  border-color: #0d6efd;
}
.login-card .login-left .btn-login {
  border-radius: 10px;
  padding: 0.6rem;
  font-weight: 600;
}
.login-card .login-left a {
  color: #0d6efd;
}
.login-card .login-left a:hover {
  text-decoration: underline;
}
.login-card .login-right {
  background: linear-gradient(135deg, #6610f2, #0d6efd);
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.login-card .login-right h4 {
  font-weight: 700;
}
.login-card .login-right p {
  opacity: 0.9;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .login-card .login-left {
    padding: 2rem;
  }
}
.auth-card {
  border-radius: 16px;
  overflow: hidden;
}
.auth-card .auth-info {
  background: linear-gradient(135deg, #6610f2, #0d6efd);
  color: #fff;
  text-align: center;
  padding: 2.5rem;
}
.auth-card .auth-info h4 {
  font-weight: 700;
}
.auth-card .auth-info p {
  opacity: 0.9;
  font-size: 0.9rem;
}
.auth-card .auth-form {
  background: #fff;
  padding: 2.5rem;
}
.auth-card .auth-form h3 {
  font-weight: 700;
}
.auth-card .auth-form .form-control {
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
}
.auth-card .auth-form .form-control:focus {
  box-shadow: none;
  border-color: #0d6efd;
}
.auth-card .auth-form .btn-auth {
  border-radius: 10px;
  padding: 0.6rem;
  font-weight: 600;
}
.auth-card .auth-form a {
  color: #0d6efd;
}
.auth-card .auth-form a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .auth-card .auth-form {
    padding: 2rem;
  }
}/*# sourceMappingURL=styles.css.map */