* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --orange: #fb8e00;
  --teal: #2aa88b;
  --white: #ffffff;
}

html {
  overflow-x: hidden;
}

html,
body {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}

a:hover {
  color: var(--mainColor);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.no-padding {
  padding: 0px;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: #000;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  font-family: Poppins;
  overflow-x: hidden;
}

.custom-container {
  max-width: 1730px;
  margin: 0px auto;
  padding: 0px 15px;
}

.cmn-gap {
  padding: 100px 0px;
  margin: 0px;
}

.cmn-butn {
  font-family: Roboto;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 2%;
  border-radius: 0px;
  padding: 14px 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

h2 {
  font-family: Bebas Neue;
  font-weight: 400;

  font-size: 80px;

  line-height: 90px;
  letter-spacing: -2%;
  color: #000;

  padding: 0px 0px 20px 0px;
  margin: 0px;
}

h3 {
	font-family: Roboto;
	font-weight: 500;
	font-size: 28px;
	line-height: 38px;
	letter-spacing: -2%;
	color: #000;
	margin: 0px;
	padding: 15px 0px;
	position: relative;
}

h6 {
  font-family: Roboto;
  font-weight: 400;

  font-size: 28px;

  line-height: 38px;
  letter-spacing: -2%;
  font-variant: small-caps;
  color: #2aa88b;
  margin: 0px;
  padding: 0px 0px 20px 0px;
  position: relative;
}

p {
  font-family: Roboto;
  font-weight: 400;

  font-size: 20px;

  line-height: 30px;
  letter-spacing: -2%;

  color: #767676;
  padding: 0px 0px 20px 0px;
  margin: 0px;
}

/* =================================== */
/* =============my-css-start===========*/
/* =================================== */

/* ========NAVBAR===========*/

.main-nav {
  margin: 0px;
  padding: 10px 0px;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease 0s;
  background: #fff;
}

.main-nav.scroll {
  background: #fffcf4;
  height: auto;
  padding: 6px 0px;
  transition: background-color 0.5s ease 0s;
  top: 0;
  position: fixed;
  transition: all 0.3s ease 0s;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.07);
  z-index: 9;
}

.site-nav {
  padding: 0px;
  margin: 0px;
  transition:
    box-shadow 0.3s,
    padding 0.3s;
  background: transparent;
}

.logo {
  width: 150px;
  height: auto;
  margin: 0px;
  padding: 0px;
  position: relative;
}

.logo img {
  width: 100%;
}

.main-nav.scroll .logo {
  width: 35%;
  margin: 0px;
  padding: 0px;
}

.main-nav.scroll .stellarnav {
  align-items: center;
}

.main-nav.scroll .rightlink {
  align-items: center;
}

.stellarnav.mobile.right > ul {
  z-index: 99;
  background: #f0d04d;
}

.stellarnav {
  position: relative;
  width: 100%;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0px 40px 0px 0px;
}

.stellarnav ul {
  margin: 10px 0px;
  padding: 0px;
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}

.stellarnav > ul > li > a {
  font-family: Poppins;
  font-weight: 500;

  font-size: 16px;

  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;

  color: #000000;
  padding: 0px;
  margin: 0px;
}

.main-nav.scroll .stellarnav > ul > li > a {
  color: #000;
}

.stellarnav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.stellarnav > ul > li > a:hover {
  color: var(--orange) !important;
}

.stellarnav > ul > li > a:hover::after,
.stellarnav > ul > li > a.active::after {
  transform: scaleX(1);
}

.main-nav-socialicon {
  margin: 20px 0px 0px 0px;
  padding: 0px 0px;
  position: relative;
  text-align: right;
}

.main-nav .stellarnav ul ul {
  width: 263px;
  padding: 12px 0px;
}

.main-nav .stellarnav li li {
  margin: 0px 0px;
  width: 100% !important;
  border-bottom: #ccccccb8 1px solid;
}

.main-nav .stellarnav li li a {
  font-size: 15px;
  padding: 8px 12px;
  color: #2c2c2c;
  font-weight: 400;
}

.stellarnav li.has-sub a {
  padding-right: 0px !important;
}

.main-nav .stellarnav li li a:hover {
	background: #f9f9f9;
	color: #fb8e00;
}

.main-nav .stellarnav li li a.active {
  background: #f9f9f9;
  color: #a4b4e8;
}

.stellarnav li.has-sub > a::after {
  content: "\f107";
  margin-left: 7px !important;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #267ec3;
  display: inline-block;
  border: none !important;
  font: normal normal normal 16px/1 FontAwesome;
}

.search-bar-outer {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}

.search-bar {
  display: flex;
  align-items: center;
  background: transparent;

  padding: 0 20px;
  gap: 8px;
  width: 320px;
  border: 1px solid #e3e3e3;
  border-radius: 30px;
  justify-content: end;
}

.search-bar input {
  border: none;
  background: transparent;
  font-size: 0.84rem;
  color: var(--text);
  padding: 9px 0;
  outline: none;
  width: 100%;
}

.search-bar i {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav-category {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 14px;
  cursor: pointer;
  background: var(--white);
  transition: all 0.25s;
  white-space: nowrap;
}

.rightlink {
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}

.rightlink ul {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: end;
  height: 100%;
}

.rightlink ul li a {
  font-size: 20px;
}

.rightlink ul li a:hover {
  color: #fb8e00;
}

/* ========NAVBAR===========*/

/* =======banner-section===========*/

.hero {
  position: relative;
  min-height: 800px;

  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
  animation: heroImgIn 1s 0.3s both;
}

@keyframes heroImgIn {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0% 0 0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(240, 236, 230, 1) 35%,
    rgba(240, 236, 230, 0) 65%
  );
}

.hero .custom-container {
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-content h1 {
	font-family: Bebas Neue;
	font-weight: 400;
	font-size: 100px;
	line-height: 110px;
	letter-spacing: -2%;
	color: var(--black);
	text-transform: uppercase;
	animation: fadeUp 0.7s 0.2s both;
}

.hero-content p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -2%;
  max-width: 370px;
  margin: 30px 0px;
  animation: fadeUp 0.7s 0.4s both;
}

.btn-hero {
  background: #6f9990;
  color: var(--white);

  border: 2px solid #6f9990;

  transition: all 0.3s;
  animation: fadeUp 0.7s 0.6s both;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
  z-index: 0;
}

.btn-hero:hover {
  color: var(--white);
  border-color: var(--black);
}

.btn-hero:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-hero span,
.btn-hero i {
  position: relative;
  z-index: 1;
}

/* floating tag cards */

.hero-tag {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 20px;
  animation: floatY 4s ease-in-out infinite;
  min-width: 320px;
  border: 1px solid #ececec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}

.hero-tag1 {
  bottom: 83px;
  right: 21%;
  animation-delay: 0s;
}

.hero-tag-label {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-transform: uppercase;
  color: #000000;
}

.hero-tag-val {
  font-family: Poppins;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #767676;
  text-transform: capitalize;
  margin: 8px 0px;
  padding: 0px;
}

.hero-tag-sub {
  font-size: 0.7rem;
  color: var(--muted);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-tag-butn {
  width: 40px;
  height: 40px;
  background-color: #fb8e00;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-tag-butn i {
  transform: rotate(-400deg);
  transition: transform 0.5s;
}

.hero-tag-butn:hover {
  background: #000;
}

a.view-pro {
  font-family: Roboto;
  font-weight: 400;

  font-size: 14px;

  letter-spacing: -4%;
  font-variant: small-caps;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #000;
}

a.view-pro:hover {
  color: #fb8e00;
}

/* =======banner-section===========*/

/* ======TICKER==========*/

.ticker {
  background: var(--black);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.ticker-track span .star {
  color: var(--orange2);
  font-size: 0.6rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =======TICKER===========*/

/* =======about-section==========*/

.about-section {
  background: url(../images/about-bg.png) bottom left no-repeat;
  position: relative;
  overflow: hidden;
  background-size: contain;
}

.about-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.about-section-header {
  margin: 0px 0px 80px 0px;
  padding: 0px;
}

.about-section-header h6 {
  font-family: Roboto;
  font-weight: 500;
  font-size: 26px;
  line-height: 26px;
  letter-spacing: -2%;
  font-variant: small-caps;
  color: #2aa88b;
  padding: 0px 0px 0px 30px;
  margin: 0px;
  position: relative;
}

.about-section-header h6::before {
  content: "\f111";
  color: var(--teal);
  font-size: 25px;
  position: absolute;
  left: 0px;
  font: normal normal normal 16px/1 FontAwesome;
  top: 6px;
}

.about-section-body-left {
  padding: 0px;
  margin: 0px;
}

.about-section-body-left h3 {
  font-family: Bebas Neue;
  font-weight: 400;

  font-size: 45px;

  line-height: 45px;
  letter-spacing: -2%;
  font-variant: small-caps;
  color: #000;
  margin: 0px 0px 20px 0px;
  padding: 0px;
}

.about-section-body-left p {
  font-family: Roboto;
  font-weight: 400;

  font-size: 20px;

  letter-spacing: -2%;
  color: #767676;
  padding: 0px;
  margin: 20px 0px;
  max-width: 400px;
}

.more-about {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -4%;
  font-variant: small-caps;
  color: #000;
  padding: 0px;
  margin: 0px;
  text-decoration: underline;
  line-height: 20px;
  padding-bottom: 10px !important;
}

.more-about span {
  margin-left: 10px;
}

/* giant watermark text */
.about-watermark {
  position: absolute;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.04);
  letter-spacing: -0.02em;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: watermarkSlide 18s linear infinite;
}

@keyframes watermarkSlide {
  0% {
    letter-spacing: -0.02em;
  }

  50% {
    letter-spacing: 0.02em;
  }

  100% {
    letter-spacing: -0.02em;
  }
}

.about-left-text {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 240px;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  margin-top: 22px;
  border-bottom: 1.5px solid var(--text);
  padding-bottom: 3px;
  transition:
    gap 0.25s,
    color 0.25s,
    border-color 0.25s;
}

.btn-about:hover {
  gap: 12px;
  color: var(--orange);
  border-color: var(--orange);
}

/* identity card */

.identity-card-outer {
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: space-around;
  align-items: start;
  height: 100%;
  gap: 0px;
}

.identity-card {
  border-radius: 6px;
  padding: 0px;
  display: grid;
  gap: 12px;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  width: 420px;
}

.identity-card:hover {
  transform: translateY(-4px);
}

.identity-label {
  font-family: Bebas Neue;
  font-weight: 400;

  font-size: 30px;
  line-height: 40px;

  letter-spacing: -2%;
  color: #000;
  margin: 0px 0px 10px 0px;
}

.identity-label-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.identity-val {
  font-family: Roboto;
  font-weight: 400;

  font-size: 20px;

  letter-spacing: -2%;
  color: #767676;
  padding: 0px;
  margin: 0px;
}

.identity-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.identity-tag-bottom {
  background: var(--black);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-top: 8px;
  display: inline-block;
  border-radius: 2px;
}

/* =======about-section==========*/

/* =======watch-banner==========*/

.watch-banner {
  min-height: 720px;

  position: relative;
  overflow: hidden;
}

.watch-banner-bg {
  position: absolute;
  inset: 0;
  background: url("../images/banner-tag1.png") center/cover no-repeat;

  transition: transform 8s ease;
}

.watch-banner:hover .watch-banner-bg {
  transform: scale(1.04);
}

.watch-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

.watch-banner-content {
  position: relative;
  z-index: 2;
  padding: 0px;
  max-width: 415px;
}

.watch-banner-content h2 {
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: -2%;
  font-variant: small-caps;
  text-transform: uppercase;
  color: #fff;
  margin: 0px 0px 30px 0px;
  padding: 0px;
  max-width: 100%;
  text-align: left;
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  text-transform: uppercase;
  border-radius: 4px;
  padding: 11px 22px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-watch:hover {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}

/* =======watch-banner==========*/

/* ======category-section==========*/

.category-section {
  position: relative;
  overflow: hidden;
}

.category-section-text {
  margin: 0px 80px 0px 0px;
  padding: 0px;
}

.category-section-text h6 {
  padding: 0px 0px 20px 0px;
}

.cat-img-wrap {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.cat-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
  overflow: hidden;
}

.cat-img-wrap:hover img {
  transform: scale(1.04);
}

/* category list */

.category-section-info {
  padding: 0px;
  margin: 0px;
}

.category-section-info p {
  padding: 0px 0px 60px 0px;
  margin: 0px;
}

.cat-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.cat-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #c0c0c0;
  cursor: pointer;
  transition: padding-left 0.3s;
  position: relative;
}

.cat-list li:first-child {
  border-top: 0px solid #c0c0c0;
}

.cat-list li:last-child {
  border-bottom: 0px solid #c0c0c0;
}

.cat-list li:hover {
  padding-left: 10px;
}

.cat-num {
  font-family: Roboto;
  font-weight: 500;
  font-style: Italic;
  font-size: 24px;

  line-height: 100%;
  letter-spacing: -2%;
  color: #a1a1a1;
  padding: 0px;
  margin: 0px;
}

.cat-name {
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 65px;
  line-height: 75px;
  letter-spacing: -2%;
  color: #c0c0c0;
  flex: 1;
  padding: 0 35px;
  transition: color 0.25s;
}

.cat-list li:hover .cat-name {
  color: var(--black);
}

.cat-list li.active .cat-name {
  color: var(--black);
}

.cat-count {
  font-family: Roboto;
  font-weight: 400;

  font-size: 20px;

  line-height: 100%;
  letter-spacing: -2%;
  color: #a1a1a1;
  margin: 0px;
  padding: 0px;
}

.cat-dot {
  display: none;
  align-items: center;
  justify-content: center;
}

.cat-dot i {
  font-size: 35px;
  color: var(--orange);
  transform: rotate(-400deg);
  transition: transform 0.5s;
}

.cat-list li:hover .cat-dot {
  display: block;
  transform: translate(5px, -5px);
}

.cat-list li.active .cat-dot {
  display: block;
  transform: translate(5px, -5px);
}

.cat-list li:hover .cat-count {
  color: var(--black);
  margin: 0px 30px 0px 0px;
}

.cat-list li.active .cat-count {
  display: block;
  margin: 0px 30px 0px 0px;
  color: var(--black);
}

/* ======category-section==========*/

/* ======shop-section==========*/

.shop-section {
  position: relative;
  overflow: hidden;
}

.shop-section-headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  margin: 0px 0px 40px 0px;
}

.shop-section-header-left {
  padding: 0px;
  margin: 0px;
}

/* Tab pills */
.shop-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.shop-tabs .nav-link {
  font-family: Poppins;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #363636;
  background: var(--white);
  border: 1.5px solid #dddddd;
  border-radius: 30px;
  padding: 7px 30px;
  transition: all 0.28s;
}

.shop-tabs .nav-link:hover {
  border-color: var(--black);
  color: var(--black);
}

.shop-tabs .nav-link.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Product card */
.product-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.35s;
}

.product-card:hover {
  transform: translateY(-7px);
}

.product-img-wrap {
	height: 500px;
	overflow: hidden;
	/* background: #eaebe6; */
	position: relative;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 13.3px 33.26px 0px #00000012;
	border: 1px solid #00000012;
}

.product-img-wrap img {
  width: auto;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

/* discount badge */
.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 2;
}

/* wishlist */
.prod-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--muted);
  cursor: pointer;
  transition:
    color 0.25s,
    transform 0.25s,
    background 0.25s;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.85);
}

.product-card:hover .prod-wish {
  opacity: 1;
  transform: scale(1);
}

.prod-wish:hover {
  color: #e53935;
  background: #ffeaea;
}

/* quick add */
.prod-quickadd {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2aa88b;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px;
  transform: translateY(100%);
  transition: transform 0.32s ease;
  cursor: pointer;
}

.product-card:hover .prod-quickadd {
  transform: translateY(0);
}

.product-body {
  padding: 14px 16px 18px;
}

.product-brand {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0%;
	text-transform: capitalize;
	color: #000;
	padding: 0px;
	margin: 0px 0px 10px 0px;
}

.product-name {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: lowercase;
  color: #767676;
  margin: 0px 0px 10px 0px;
  padding: 0px;
}

.product-prices {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product-old {
  font-weight: 500;

  font-size: 24px;
  color: #767676;
  line-height: 24px;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-decoration: line-through;
}

.product-price {
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
  letter-spacing: 0%;
  text-transform: capitalize;
}

/* tab pane transition */
.tab-pane {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.tab-pane.show.active {
  opacity: 1;
  transform: translateY(0);
}

/* stagger */
.stagger {
  /* opacity: 0; */
  transform: translateY(22px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.stagger.in {
  opacity: 1;
  transform: translateY(0);
}

.tab-butn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px 0px 0px 0px;
}

.tab-butn .btn-cta {
  background: var(--orange);
}

.tab-butn .btn-cta:hover {
  background: var(--teal);
  color: var(--white);
}

/* ======shop-section==========*/

/* ======cta-section==========*/

.cta-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: flex;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url("../images/banner-tag2.png") center/cover no-repeat;
  transition: transform 8s ease;
}

.cta-section:hover .cta-bg {
  transform: scale(1.04);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.2) 40%,
    transparent 100%
  );
}

.cta-section-right {
  padding: 0px;
  margin: 0px;
  text-align: left;
}

.cta-section-right p {
  color: #fff;
  padding: 0px 0px 40px 0px;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 0px;
  width: 100%;
}

.cta-section-left {
  height: 650px;
  display: flex;
  justify-content: start;
  align-items: flex-end;
}

.cta-section-left h2 {
  color: #fff;
}

.btn-cta {
  background: var(--orange);
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: var(--white);
  color: var(--orange);
}

/* ======cta-section==========*/

/* =====footer========*/

footer {
  background: var(--black);
  padding: 60px 0 0px;
}

.footer-logo {
  width: 400px;
  height: auto;
  overflow: hidden;
}

.footer-col-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #fff;
  margin: 0px 0px 20px 0px;
  padding: 0px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links a {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #7b7b7b;
  text-decoration: none;
  transition:
    color 0.25s,
    padding-left 0.25s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.subscribe-row {
  display: flex;
  gap: 0;
  margin-top: 30px;
  position: relative;
}

.subscribe-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #2e2e2e;
  border-right: none;
  border-radius: 30px;
  padding: 15px 17px;
  color: var(--white);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}

.subscribe-row input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.subscribe-row input:focus {
  border-color: var(--orange);
}

.subscribe-row button {
  background: var(--white);
  border: none;
  border-radius: 55%;
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
  position: absolute;
  right: 3px;
  width: 40px;
  height: 40px;
  margin: 5px 4px;
}

.subscribe-row button:hover {
  background: var(--orange2);
}

.footer-butm {
  border-top: 1px solid #2e2e2e;
  padding: 15px 0px;
  margin: 40px 0px 0px 0px;
}

.footer-butm p {
  font-weight: 400;

  font-size: 16px;

  line-height: 100%;
  letter-spacing: 0%;
  color: #7b7b7b;
  padding: 0px;
  margin: 0px;
}

.footer-butm p a {
  color: #7b7b7b;
}

.footer-butm p a:hover {
  color: var(--orange);
}

.footer-butm-link ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}

.footer-butm-link ul li a {
  font-weight: 400;

  font-size: 16px;

  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #7b7b7b;
}

.footer-butm-link ul li a:hover {
  color: var(--orange);
}

/* =====footer========*/

/* =================================== */
/* =============my-css-end===========*/
/* =================================== */

.stellarnav .full {
  width: 100%;
  right: 14px !important;
  position: relative;
}

.stellarnav .icon-close::after {
  border-bottom: solid 3px #fff;
}

.stellarnav .icon-close::before {
  border-bottom: solid 3px #fff;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 100px;
  right: 20px;
  border-radius: 50%;
  background-color: var(--orange);
  color: #ffffff;
  z-index: 999;
  width: 50px;
  text-align: center;
  height: 50px;
  opacity: 0;
  visibility: hidden;
  font-size: 25px;
  -webkit-transition: var(--transition);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.go-top:hover {
  color: #ffffff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  background-color: #000;
  border: 1px solid #000;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
  -webkit-animation: top-bottom 5s infinite linear;
  animation: top-bottom 5s infinite linear;
}

/*================================================
Go Top CSS
=================================================*/

.inner-banner-section {
  padding: 0px;
  margin: 0px;
  position: relative;
  height: 300px;
}

.inner-banner-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.52) 0%,
    rgba(10, 10, 10, 0.69) 100%
  );
}

.inner-banner-section img {
  width: 100%;

  object-fit: cover;
  height: 300px;
}

.inner-banner-text {
  position: absolute;
  top: 55%;
  left: 0px;
  right: 0px;
  color: #fff;
  z-index: 9;
  text-align: center;
}

.inner-banner-text h1 {
  font-weight: 600;
  font-size: 45px;
  line-height: 45px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 0px;
  margin: 0px;
}

.about-page-ful-text {
  margin: 20px 0px;
  padding: 0px;
}

.inner-butm-section {
  background: #d9d9d7;
  position: relative;
  overflow: hidden;
}

.inner-butm-section-img img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.inner-butm-section-text {
  padding: 0px;
  margin: 0px 120px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  height: 100%;
}

.inner-butm-section-text h6 {
  padding: 0px 0px 40px 0px;
  margin: 0px;
}

.inner-butm-section-text h2 {
  max-width: 50%;
  color: #fff;
}

/*Contact Page*/

.contact-page-info-box {
    text-align: center;
    margin: 0px auto;
    padding: 0px;
}

.contact-page-info-icon {
    width: 80px;
    height: 80px;
    background: #fb8e00;
    border-radius: 50%;
    padding: 15px 0px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-page-info-icon i {
    color: #121607;
    font-size: 30px;
}

.contact-page-info-text {
    margin: 30px 0px 0px;
    padding: 0px;
}

.contact-page-info-text p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    color: #18100f;
    padding: 0px;
    margin: 0px;
}

.contact-page-info-text p a {
    color: #18100f;
}

.get-in-touch {
    background: #fb8e00;
    margin: 0px;
    text-align: center;
}

.get-in-touch h2 {
    color: #fff;
    margin: 0px 0px 40px 0px;
    padding: 0px;
}

.frm-section-inner .form-row .form-control {
    background: #e8e8e8;
    border-radius: 6px;
    opacity: 1;
    padding: 12px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #212222;
    margin: 0px 0px 15px 0px;
}

.get-in-touch .cmn-butn.btn-gold {
    margin: 20px auto;
    border: none;
}


/*product page*/

.s-ctgry {
	background: transparent;
	padding: 20px;
	margin-bottom: 30px !important;
	border: 1px solid #DDDDDD;
	border-radius: 12px;
	margin-top: 25px;
}

.bapf_head h3 {
   font-family: Bebas Neue;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -2%;
  color: #000;
  margin: 0px 0px 20px 0px;
  padding: 0px;
}



.products .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    float: left;
    margin: 0px 6px 12px !important;
    padding: 0;
    position: relative;
    margin-left: 0;
}

.products li {
	border: 1px solid #cccccc4f;
	background: linear-gradient(272deg, rgba(255, 225, 156, 0.25) 0%, #FFF 100%);
	-webkit-box-shadow: 0 18px 40px -10px rgba(51, 51, 51, 0.1);
	box-shadow: 0 18px 40px -10px rgba(51, 51, 51, 0.32);
	border-radius: 10px;
	padding: 15px 15px !important;
	overflow: hidden;
	text-align: center;
}

.products li .attachment-woocommerce_thumbnail {
    border-radius: 10px;
    overflow: hidden;
}

.products .woocommerce-loop-product__title {
	font-family: Poppins;
	font-weight: 600;
	font-size: 17px !important;
	line-height: 24px;
	letter-spacing: 0;
	color: #22282B;
	padding: 0px 10px !important;
	margin: 0px 0px 5px 0px !important;
	width: 100%;
	text-align: center;
}

.woocommerce ul.products li.product .price {
	display: block !important;
	font-weight: 500 !important;
	margin-bottom: 5px !important;
	font-size: 33px !important;
	color: #000 !important;
	font-family: Bebas Neue;
}



.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
	background: #fb8e00;
	color: #fff;
	font-weight: 400;
	padding: 12px 20px !important;
	margin-top: 0px !important;
}

.bapf_sfilter ul li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	max-width: 100%;
	text-align: left !important;
	font-family: Poppins;
	font-weight: 400;
	font-style: Regular;
	font-size: 18px;
	leading-trim: NONE;
	line-height: 30px;
	letter-spacing: 0%;
	text-transform: capitalize;
}

.bapf_sfilter.bapf_ckbox input[type="checkbox"] {
	margin-right: 15px;
	cursor: pointer;
}


.irs--flat .irs-bar {
	top: 25px;
	height: 12px;
	background-color: #FB8E00;
}



.irs--flat .irs-from, .irs--flat .irs-single, .irs--flat .irs-to {
	color: #fff;
	font-size: 10px;
	line-height: 1.333;
	text-shadow: none;
	padding: 3px 8px;
	background-color: #FB8E00;
	border-radius: 4px;
}

.irs--flat .irs-from::before, .irs--flat .irs-single::before, .irs--flat .irs-to::before { border-top-color: #FB8E00; }

.irs--flat .irs-handle > i:first-child { background-color: #FB8E00; }

.added_to_cart.wc-forward {
	margin-left: 10px;
}


.woocommerce-Reviews-title { font-size: 45px;
	line-height: 45px;
	padding: 0px 0px 30px 0px;
	margin: 0px; }


.products h2 {
	font-size: 45px;
	line-height: 45px;
	padding: 0px 0px 30px 0px;
	margin: 0px;
}


.woocommerce-product-gallery {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 13.3px 33.26px 0px #00000012;
  border: 1px solid #00000012;
}

.woocommerce div.product div.images img {
	display: block;
	width: auto;
	height: 100vh;
	box-shadow: none;
	margin: 0px auto;
	
}

.product_title.entry-title {
	font-family: Bebas Neue;
	font-weight: 400;
	font-size: 70px;
	line-height: 100%;
	letter-spacing: 1%;
}


.attachment-woocommerce_thumbnail {
	height: 100% !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.woocommerce .products ul, .woocommerce ul.products {
	margin: 0 0 1em;
	padding: 0;
	list-style: none outside;
	clear: both;
	display: flex;
	justify-content: start;
	flex-wrap: wrap;
	gap: 10px;
}


.single_add_to_cart_button {
	background-color: #FB8E00 !important;
	margin-top: 20px !important;
	padding: 12px 35px !important;
	font-size: 22px !important;
	font-weight: 500 !important;
}

.entry-summary .price {
	font-family: Poppins;
	font-weight: 400;
	font-size: 30px !important;
	line-height: 134%;
	letter-spacing: 0%;
	text-transform: capitalize;
	/*text-decoration: line-through;*/
	color: #000 !important;
	margin: 20px 0px;
}

.woocommerce div.product form.cart div.quantity {
	float: unset;
	margin: 0px;
}

.posted_in {
	font-size: 20px;
	font-weight: 600;
}

.woocommerce div.product form.cart {
	margin-bottom: 20px;
}

.comment-form-comment label {
	width: 100%;
	font-size: 20px;
	color: #000;
	padding: 0px 0px 8px 0px;
	font-weight: 600;
}


.comment-form-author label {
	width: 100%;
	font-size: 20px;
	color: #000;
	padding: 0px 0px 8px 0px;
	font-weight: 600;
}

.comment-form-email label {
	width: 100%;
	font-size: 20px;
	color: #000;
	padding: 0px 0px 8px 0px;
	font-weight: 600;
}

.woocommerce #review_form #respond p {
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

.woocommerce #review_form #respond textarea {
	box-sizing: border-box;
	width: 20%;
}




  .woocommerce div.product .woocommerce-tabs .panel {
	margin: 0px 0px 60px 0px;
	padding: 40px;
	border: 1px solid #00000012;
}
  

.woocommerce div.product .woocommerce-tabs ul.tabs 


.form-submit .submit { background: var(--orange) !important;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s; }


.cmn-page ul li {
	font-family: Roboto;
	font-weight: 400;
	font-size: 18px;
	line-height: 35px;
	letter-spacing: -2%;
	color: #767676;
	padding: 0px 0px 6px 6px;
	margin: 0px 0px 0px 35px;
	list-style-type: disclosure-closed;
}


.u-column1 h2 {
	font-size: 40px;
	line-height: 40px;
	padding: 0px;
	margin: 0px;
}

.u-column2 h2 {
	font-size: 40px;
	line-height: 40px;
	padding: 0px;
	margin: 0px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs { margin: 0; }





.product-action .button {
	background: #FB8E00 !important;
	font-size: 13px !important;
	padding: 12px 10px !important;
	font-size: 14px !important;
    font-weight: 500 !important;
}

.tinvwl-input-group-btn .button {
	background: #FB8E00 !important;
	font-size: 13px !important;
	padding: 12px 10px !important;
	color: #fff !important;
	font-size: 14px !important;
    font-weight: 500 !important;
}

.tinvwl-to-right .button  {
	background: #FB8E00 !important;
	font-size: 13px !important;
	padding: 12px 10px !important;
	color: #fff !important;
	font-size: 14px !important;
    font-weight: 500 !important;
}

.button:hover { background: #000 !important; }

.button.wc-forward {
	background: #FB8E00 !important;
	font-size: 13px !important;
	padding: 12px 10px !important;
	color: #fff !important;
	font-size: 14px !important;
    font-weight: 500 !important;
}


.aws-container .aws-search-form .aws-form-btn { background: transparent;
  border: 0px solid #d8d8d8;  }

.aws-container {
	border: 1px solid #d8d8d8;
	border-radius: 30px;
}

.aws-container .aws-search-field { border-radius: 30px 0px 0px 30px !important; border: 0px solid #d8d8d8; }

.orderby {
	padding: 9px 25px;
	font-size: 14px;
	background: transparent;
	border: 1px solid #ddd;
	border-radius: 30px;
}

/*.product-right .products li .attachment-woocommerce_thumbnail {*/
/*	border-radius: 10px;*/
/*	overflow: hidden;*/
/*	max-height: 400px !important;*/
/*	height: 100% !important;*/
/*	width: 100% !important;*/
/*	object-fit: cover !important;*/
/*}*/

.has-sub {
	position: relative !important;
	display: flex !important;
}


.has-sub::after {
  content: "\f107";
  margin-left: 7px !important;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #267ec3;
  display: inline-block;
  border: none !important;
  font: normal normal normal 16px/1 FontAwesome;
}

.main-nav .stellarnav ul ul {
	width: 263px;
	padding: 12px 0px;
	top: 34px;
}


.product-imagebox {
	width: 100%;
	height: 350px;
	overflow: hidden;
	background: #fff;
	border-radius: 15px;
	margin-bottom: 20px;
}

.product-imagebox img {
	width: 100%;
	height: 100%;
	object-fit: contain !important;
}












