@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.arimo-<uniquifier> {
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
html{
	overflow-x: hidden !important;
}
body {
    margin: 0;
    padding: 0 !important;
    font-family: "Arimo", sans-serif;
    scroll-behavior: smooth;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"]
textarea,
select {
  background: none;
  border: solid 1px #f1f1f1;
  color: #444;
  font-size: 16px;
  line-height: normal;
  margin: 0 0 10px;
  padding: 18px 20px;
  width: 100%;
  outline: 0;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
  background: white;
  border-color: #d84622;
}
input[type="submit"] {
  background: #d84622;
  text-transform: capitalize;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  outline: none;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: white;
}
input[type="submit"]:hover {
    background: #d84622;
    color: white;
    transition: 0.8s;
}
textarea {
  height: 100px;
  margin-bottom: 5px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  font-family: "Lato", sans-serif;
  color: #444444;
  font-weight: 500;
  text-transform: inherit;
  line-height: normal;
}
h1 {
  font-size: 28px;
}
h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
p {
  padding: 0;
  margin: 0 0 10px 0;
  font-family: "Arimo", sans-serif;
  color: #454a50;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}
ul,
li,
a {
  list-style-type: none;
  font-family: "Arimo", sans-serif;
  color: #222;
  line-height: 24px;
  font-size: 15px;
  letter-spacing: 0;
  text-decoration: none !important;
}
a:hover {
  transition: 0.8s;
  text-decoration: none;
}
html {
  overflow-x: hidden !important;
}

/* PRE-LOADER */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0b0b0b;
    top: 0;
    left: 0;
    z-index: 99999;

    display: flex;
    flex-direction: column; /* Added for vertical alignment */
    align-items: center;
    justify-content: center;

    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Inner Box */
.loader-inner {
    position: relative;
    width: 200px;
    height: 200px;
}

/* Rotating Circle */
.spinner {
    width: 100%;
    height: 100%;
    border: 3px solid #ff3c00;
    border-top: 3px solid #831619;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.logo-txt h4 {
    font-family: "Lato", sans-serif;
	margin-left: 30px;
    margin-top: 10px;
    padding: 0;
    color: #000;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}
.sp-lt {
    margin-left: -30px;
    margin-right: 30px;
}
.logo-txt span {
    color: #ff3c00;
}

/* Center Logo */
.logo {
    position: absolute;
    width: 150px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loader Text */
.loader-text {
    margin-top: 25px;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: 0.85;
	font-family: 'Lato';
/*     animation: fadeIn 1.5s ease-in-out infinite alternate; */
}

/* Spinner Animation */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Text Fade Animation */
@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Hide State */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}
/* HEADER SECTION */

ul#menu-primary li a {
    color: #000;
    font-weight: 700;
	font-size: 16px;
}
.slider-header {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
	background: #fff;
	box-shadow: 0px 0px 10px #ffffff8c;
}
.slider-header .container{
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.slider-logo img {
    height: auto;
    width: 100%;
    position: relative;
}
.slider-logo {
    width: 30%;
}
.slider-header.sticky {
    position: fixed !important;
    top: 0;
    background: #fff !important;
    padding: 12px 20px;
    box-shadow: 0 6px 20px rgb(255 255 255 / 19%);
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Hamburger Menu */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}
.rows .three{
box-sizing: border-box;
    color: #ecf0f1;
    text-align: center;
    position: relative;
}
.hamburger .line{
  width: 50px;
  height: 3px;
  background-color: #000;
  border-radius: 20px;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
span.line.ln-1 {
    width: 30px;
}
span.line.ln-3 {
    width: 30px;
}
.hamburger:hover{
  cursor: pointer;
}
#hamburger-10{
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#hamburger-10.is-active{
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#hamburger-10.is-active .line:nth-child(1){
  width: 30px
}

#hamburger-10.is-active .line:nth-child(2){
  width: 40px
}
/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
	width: 100%;
	overflow-y: auto;
}
.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}
.fullscreen-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fullscreen-nav li {
    margin: 20px 0;
}
.fullscreen-nav li a {
    font-size: 22px;
	line-height: 1.5;
	font-family: "Lato", sans-serif;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
.fullscreen-nav li a:hover {
    color: #EB1C24;
    transform: scale(1.05);
}
.menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}
.menu-close:hover {
    color: #fff;
    transform: rotate(90deg);
}
@media (max-width: 768px) {
    .menu-close {
        font-size: 32px;
        top: 20px;
        right: 25px;
    }
}
/* Hide submenu initially */
.fullscreen-nav li ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* Active submenu */
.fullscreen-nav li.active > ul {
    max-height: 1000px; /* bigger for nested */
}
.slider-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
	padding: 10px 0px;
}
.header-menu{
    flex:1;
    text-align:center;
}
.primary-nav{
    list-style:none;
    margin:0;
    padding:0;
}
.primary-nav li{
    display:inline-block;
    margin: 0 15px;
	position: relative;
}
.primary-nav li a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    letter-spacing:1px;
    font-weight:500;
    transition:0.3s;
}
.primary-nav li a:hover{
    color:#EB1C24;
}
.header-menu ul.sub-menu li {
    padding: 5px 10px;
    border-radius: 5px 0px 5px 0px;
}

.header-menu ul.sub-menu li:hover {
    background: linear-gradient(-45deg, #000000, #ff3c00bf, #c42025fc);
	width: 100%;
}
.header-icons{
    display:flex;
    align-items:center;
    gap:20px;
}
.header-icon{
    color:#000;
    font-size:18px;
    transition:0.3s;
}
.header-icon:hover{
    color:#EB1C24;
}
.rows.cf{
    margin-left:10px;
}
@media (max-width: 991px){

.header-menu{
    display:none;
}

}

/* Parent menu item */
.primary-nav li {
    position: relative;
}

/* Submenu container */
.primary-nav li ul {
	text-align: justify;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 15px 10px;
    border-radius: 6px;
    min-width: 270px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Show submenu on hover */
.primary-nav li:hover > ul {
    opacity: 1;
    visibility: visible;
}

/* Submenu items */
.primary-nav li ul li {
    display: inline-block;
    margin: 0;
	text-align: left;
	position: relative;
}
.primary-nav li ul li ul {
	min-width: 265px !important;
    top: -15px;
    left: 102%;
    margin-left: 10px;
    opacity: 0;
    visibility: hidden;
}
.primary-nav li ul li:hover > ul {
    opacity: 1;
    visibility: visible;
}
/* Remove separator from submenu */
.primary-nav li ul li::after {
    content: "";
}

/* Submenu links */
.primary-nav li ul li a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
	position: relative;
    padding-left: 22px; /* space for arrow */
}
/* Arrow icon */
.primary-nav li ul li a::before {
    content: "\f105"; /* Font Awesome right arrow */
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #EB1C24;
    transition: 0.3s;
}

/* Hover effect */
.primary-nav li ul li a:hover::before {
    left: 10px;
    color: #fff;
}
/* Sale Button */
li#menu-item-77 {
    --border-color: linear-gradient(-45deg, #000000, #ff3c00, #c42025);
    --border-width: 0.125em;
    --curve-size: 0.5em;
    --blur: 30px;
    --bg: #08031285;
    --color: #afffff;
    color: var(--color);
    cursor: pointer;
    position: relative;
    isolation: isolate;
    display: inline-grid;
    place-content: center;
    padding: 0.5em 1.5em;
    font-size: 17px;
    border: 0;
    text-transform: uppercase;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
    clip-path: polygon(
    /* Top-left */ 0% var(--curve-size),
    var(--curve-size) 0,
    /* top-right */ 100% 0,
    100% calc(100% - var(--curve-size)),
    /* bottom-right 1 */ calc(100% - var(--curve-size)) 100%,
    /* bottom-right 2 */ 0 100%
  );
    transition: color 250ms;
}
li#menu-item-77::after,
li#menu-item-77::before {
  content: "";
  position: absolute;
  inset: 0;
}
li#menu-item-77::before {
  background: var(--border-color);
  background-size: 300% 300%;
  animation: move-bg7234 5s ease infinite;
  z-index: -2;
}
@keyframes move-bg7234 {
  0% {
    background-position: 31% 0%;
  }

  50% {
    background-position: 70% 100%;
  }

  100% {
    background-position: 31% 0%;
  }
}
li#menu-item-77::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
    /* Top-left */ var(--border-width)
      calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    /* top-right */ calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    /* bottom-right 1 */
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    /* bottom-right 2 */ var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms;
}
li#menu-item-77:where(:hover, :focus)::after {
  clip-path: polygon(
    /* Top-left */ calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    /* top-right */ calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    /* bottom-right 1 */
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    /* bottom-right 2 */
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width))
  );
  transition: 200ms;
}
li#menu-item-77:where(:hover, :focus) {
  color: #fff;
}
li#menu-item-77 a {
    color: #fff !important;
}



/* HERO SECTION */

.gp-hero{
background:url("https://algopagedev.com/work/theridersbench.com/wp-content/uploads/2026/03/gpt2-scaled.jpg") center/cover no-repeat fixed;
color:white;
position:relative;
overflow:hidden;
padding-top: 75px;	
}
.hero-height{
min-height:720px;
}
.product-img{
max-width:520px;
animation:slideLeft 1.2s ease;
}
.hero-right{
padding:60px;
animation:slideRight 1.2s ease;
height: 500px;	
}
.sub{
color: #831619;
letter-spacing: 4px;
font-size: 18px;
display:block;
margin-bottom:15px;
}
.hero-right h1{
font-size:72px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;
}
.hero-right p{
color:#aaa;
max-width:420px;
margin-bottom:30px;
}
.button {
  width: 40% !important;	
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background-color: #484848;
  border: 5px solid #2d2a29;
  color: white;
  gap: 8px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
.text {
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 14px;	
}
.svg {
  padding-top: 5px;
  height: 100%;
  width: fit-content;
}
.svg svg {
  width: 40px;
  height: 30px;
}
.button:hover
 {
    border: 5px solid #d8462236;
    background-color: #d84622;
}
.button:active {
  border: 5px solid #c0dfff;
}
.button:hover .svg svg {
  animation: jello-vertical 0.9s both;
  transform-origin: left;
}
@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes slideLeft{
0%{
opacity:0;
transform:translateX(-120px);
}
100%{
opacity:1;
transform:translateX(0);
}
}
@keyframes slideRight{
0%{
opacity:0;
transform:translateX(120px);
}
100%{
opacity:1;
transform:translateX(0);
}
}
.wave-line{
position:absolute;
top: 30px;
left:0;
width:100%;
height:200px;
}
.wave-line path{
stroke:#d0722c;
stroke-width:2;
fill:none;
stroke-dasharray:2000;
stroke-dashoffset:2000;
animation:drawLine 2s ease forwards;
}
@keyframes drawLine{
to{
stroke-dashoffset:0;
}
}
.carousel-control-prev,
.carousel-control-next{
width:70px;
}
.nav-arrow{
font-size:28px;
color:white;
}
.gp-hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(90deg,#000 40%,transparent);
}
.carousel-control-prev {
    left: -5% !important;
    top: 45% !important;
}
.carousel-control-next {
    right: -5% !important;
    top: 45% !important;
}
.nav-arrow {
    font-size: 28px;
    color: #fc0303;
    background: #fff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
}
.hero-left img {
    height: auto;
    max-width: 100%;
}

/*VIDEO SECTION */

.vd-sec {
    padding: 80px 0;
    background: #000 url(https://grandprix.qodeinteractive.com/wp-content/uploads/2019/09/h3-bck-img-4.png?id=1591);
    /* border-top: 1px solid; */
    background-repeat: no-repeat;
}
.hero-video{
    width:100%;
    height:auto;
    border-radius:10px;
    object-fit:cover;
}

/*PRODUCTS SHOWCASE*/

.section-padding {
    padding: 80px 0;
    background: #0000007a url(https://algopagedev.com/work/theridersbench.com/wp-content/uploads/2026/03/h3-bg-img-1-5.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.protection-row{
display:flex;
align-items:stretch;
}
.protection-box{
position:relative;
height:100%;
} 
.protection-box img{
width:100%;
height:100%;
object-fit:cover;
} 
.protection-title{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:#fff;
font-size: clamp(52px, 7vw, 56px);
font-weight: 800;
letter-spacing: 3px;
font-family: "Lato", sans-serif;
}
.swiper{
height:100%;
}
.product-card{
background:#fff;
padding:20px;
height:100%;
text-align:center;
} 
.product-card img{
width:100%;
height:220px;
object-fit:contain;
} 
.community-section .product-card{
	height: 430px;
}
.product-title {
    margin-top: 15px;
    font-weight: 600;
    font-size: 18px;
    font-family: "Arimo", sans-serif;
    color: #d0722c;
}
.product-price{
font-weight:bold;
} 
.swiper-button-next,
.swiper-button-prev{
color:#fff;
background:#000;
width:40px;
height:40px;
border-radius:50%;
} 
.swiper-button-next:after,
.swiper-button-prev:after{
font-size:16px;
}
.filmgrain-overlay, .filmgrain-overlay:after {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}
.filmgrain-overlay {
    bottom: 0;
    overflow: hidden;
    right: 0;
}
.filmgrain-overlay:after {
    background: #0d0d0d url(https://preview-v2-wolfthemes.b-cdn.net/app/themes/eightpulse/assets/js/t/eightpulse/build/images/filmgrain.9d22c1cc.gif) 50% no-repeat;
    background-size: cover;
    content: "";
    opacity: .11;
    pointer-events: none;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px !important;
    color: #fff !important;
}
.swiper-button-next , .swiper-button-prev {
    height: 35px !important;
    width: 35px !important;
}
span.woocommerce-Price-amount.amount {
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: "Lato", sans-serif;
    margin-top: 15px !important;
}
.product-price {
    font-weight: bold;
    margin-top: 14px;
	font-size: 18px;
}


/* COLLECTION SHOWCASE */

.collections-section{
padding:100px 0 140px;
background:#fff;
}
.collection-heading{
    text-align: center;
    letter-spacing: 1px;
    color: #000;
    font-size: clamp(52px, 7vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
/*     margin-bottom: 50px; */
}
.collections-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}
.collection-card{
display:block;
position:relative;
overflow:hidden;
border-radius:10px;
background:#000;
transform:translateY(60px);
opacity:0;
}
.collection-image{
position:relative;
height:300px;
overflow:hidden;
}
.collection-image img{
width:100%;
height:100%;
object-fit:cover;
transition:0.6s;
}
.collection-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.collection-content{
position:absolute;
bottom:25px;
left:25px;
color:#fff;
z-index:2;
}
.collection-content h3{
font-size:26px;
margin-bottom:20px;
}
.collection-content span{
font-size:18px;
opacity:0.8;
}
.collection-card:hover img{
transform:scale(1.12);
}
.collection-card:hover{
transform:translateY(-8px);
}
@media(max-width:992px){
.collections-grid{
grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:576px){
.collections-grid{
grid-template-columns:1fr;
}
}
.gif-img {
    width: 100%;
    top: -0;
    position: relative;
}

.gif-img img {
    width: 290px; /* adjust as needed */
    position: absolute;
    left: -200px; /* start from outside */
    animation: moveBike 12s linear infinite;
}

/* Animation */
@keyframes moveBike {
    0% {
        left: -200px;
    }
    100% {
        left: 100%;
    }
}
/* ABOUT SECTION */

	section.about {
		padding: 80px 0px;
	}
 .about-section {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
	 background: #fff;
    }
    .about-section::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: 0.35;
      z-index: 0;
    }
    .about-text {
      position: relative;
      z-index: 1;
    } 
    .eyebrow {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.25em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 20px;
      opacity: 0;
    }
    .about-text h2 {
      font-size: clamp(52px, 7vw, 56px);
      font-weight: 900;
      line-height: 1.3;
      text-transform: uppercase;
      color: #000;
      letter-spacing: -0.01em;
      margin-bottom: 32px;
     
    }
    .about-text h2 span {
      color: var(--gold);
      -webkit-text-stroke: 1px var(--gold);
    } 
    .about-text p {
      font-size: 18px;
      line-height: 1.8;
      color: #000;
      max-width: 500px;
      margin-bottom: 16px;
      opacity: 0;
	  text-align: justify;	
    } 
	.divider {
		width: 100%;
		height: 2px;
		background: #d0732d;
	}
    .cta-btn {
      display: inline-block;
      margin-top: 8px;
      padding: 14px 36px;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transition: color 0.35s;
    } 
    .cta-btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: translateX(-101%);
      transition: transform 0.35s cubic-bezier(0.7, 0, 0.3, 1);
      z-index: -1;
    }
    .cta-btn:hover { color: #0a0a0a; }
    .cta-btn:hover::after { transform: translateX(0); }
    .about-visual {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
    }
    .img-card {
      position: relative;
      width: 100%;
/*       aspect-ratio: 4/5; */
      border-radius: 4px;
      overflow: hidden;
    } 
    .img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.85) contrast(1.05) saturate(0.85);
      transform: scale(1.06);
      transition: transform 8s ease;
    }
    .img-card:hover img { transform: scale(1); }
    .img-card::before,
    .img-card::after {
      content: '';
      position: absolute;
      width: 28px;
      height: 28px;
      z-index: 2;
    }
    .img-card::before {
      top: 14px; left: 14px;
      border-top: 2px solid var(--gold);
      border-left: 2px solid var(--gold);
    }
    .img-card::after {
      bottom: 14px; right: 14px;
      border-bottom: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
    }
	.rotating-badge {
		position: absolute;
		bottom: 0px;
		top: -85px;
		right: 15px;
		width: 150px;
		height: 150px;
		z-index: 10;
	}
    .badge-ring {
      position: absolute;
      inset: 0;
      animation: spinRing 12s linear infinite;
    } 
    .badge-ring svg {
      width: 100%;
      height: 100%;
    } 
	.badge-ring text {
		font-family: "Lato", sans-serif;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 2.8px;
		fill: #d0732d;
		text-transform: uppercase;
	}
    .badge-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 82px;
      height: 82px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--gold);
      background: #111;
    }
    .badge-center img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(30%);
    }
    .badge-ring-border {
      position: absolute;
      inset: 6px;
      border-radius: 50%;
      border: 1.5px solid rgba(201,168,76,0.25);
      pointer-events: none;
    }
    @keyframes spinRing {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
.bg-number {
      position: absolute;
      top: 50%;
      left: -6vw;
      transform: translateY(-50%);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(120px, 18vw, 220px);
      font-weight: 900;
      color: rgba(201,168,76,0.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      z-index: 0;
}
@media (max-width: 768px) {
  .about-section {
  grid-template-columns: 1fr;
  padding: 60px 6vw;
  gap: 100px;
}
.rotating-badge { 
   bottom: -28px; right: -10px; 
}
}

/* ── COMMUNITY SECTION ── */


    .community-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
	  padding: 50px 0px 215px 0px;	
    }
    .bg-layer {
      position: absolute;
      inset: 0;
      background-image: url('https://preview.wolfthemes.store/app/uploads/sites/53/2024/04/271556185.jpg');
      background-size: cover;
      background-position: center;
      filter: brightness(0.45) contrast(1.1);
      transform: scale(1.05);
      z-index: 0;
    }
    .vignette {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.75) 100%);
      z-index: 1;
    }
    .grad-right {
      position: absolute;
      inset: 0;
      background: linear-gradient(to left, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.0) 100%);
      z-index: 1;
    }
    .inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 100px 6vw;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .images-col {
      position: relative;
      height: 500px;
    }
    .img-back {
      position: absolute;
      top: 0;
      left: 60px;
      width: 62%;
      height: 88%;
      background: #1a1a1a;
      border: 1px solid rgba(201,160,39,0.15);
      overflow: hidden;
      transform: translateY(30px);
    } 
    .img-back img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.6) grayscale(20%);
    }
    .img-front {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 68%;
      height: 88%;
      overflow: hidden;
      border: 3px solid rgba(255,255,255,0.08);
      transform: translateX(-40px);
    } 
    .img-front img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top center;
      filter: brightness(0.9) contrast(1.05);
      transition: transform 8s ease;
    } 
    .img-front:hover img { transform: scale(1.04); }
    .img-front::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: #d0732d;
    }
    .count-badge {
      position: absolute;
      bottom: 30px;
      right: 10px;
      background: #d0732d;
      color: #0a0a0a;
      font-family: "Lato", sans-serif;
      font-weight: 900;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 10px 18px;
      transform: translateY(16px);
    }
    .text-col { } 
    .eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
      transform: translateY(16px);
    } 
    .eyebrow-line {
      width: 36px;
      height: 1.5px;
      background: #d0732d;
    } 
    .eyebrow span {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.2em;
      color: #d0732d;
      text-transform: uppercase;
    }
    .headline {
    font-family: "Lato", sans-serif;
    font-size: clamp(40px, 5.5vw, 30px);
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 32px;
    transform: translateY(30px);
    } 
    .headline .highlight {
      color: #d0732d;
      font-style: italic;
    } 
    .stats-row {
      display: flex;
      gap: 40px;
      margin-bottom: 32px;
      transform: translateY(20px);
    } 
    .stat { } 
    .stat-number {
      font-family: "Lato", sans-serif;
      font-size: 38px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    } 
    .stat-number span {
      color: #d0732d;
    } 
    .stat-label {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #d0732d;
      margin-top: 4px;
    } 
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,0.1);
      align-self: stretch;
    }
    .body-text {
      font-size: 15px;
      line-height: 1.85;
      color: #9a9189;
      max-width: 460px;
      margin-bottom: 40px;
      transform: translateY(20px);
    }
    .dots-deco {
      position: absolute;
      right: 4vw;
      top: 50%;
      transform: translateY(-50%);
      display: grid;
      grid-template-columns: repeat(5, 6px);
      gap: 8px;
      z-index: 2;
    } 
    .dots-deco span {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(201,160,39,0.35);
      display: block;
    }
    .watermark {
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      font-family: "Lato", sans-serif;
      font-size: 138px;
      font-weight: 900;
      color: rgba(255,255,255,0.17);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      z-index: 1;
      letter-spacing: -0.02em;
    } 
    @media (max-width: 768px) {
      .inner {
        grid-template-columns: 1fr;
        padding: 70px 6vw;
        gap: 50px;
      }
      .images-col { height: 380px; }
      .dots-deco { display: none; }
    }
	.product-card {
	  padding: 15px;
	  background: #fff;
	  border-radius: 10px;
	  transition: 0.3s;
	  position: relative;
      z-index: 3;
	}
	.product-card:hover {
	  transform: translateY(-5px);
	}
	.product-card img {
	  width: 100%;
	  height: auto;
	}
	.product-card a
	 {
		color: #d0722c !important;
		font-size: 18px !important;
		font-weight: 600 !important;
	}
	.product-card h5 {
		margin-top: 15px;
	}
	ul.community-list {
		padding-left: unset;
	}


/* WHY CHOOSE US */

section.why-choose-us-section {
    padding: 100px 0;
    position: relative;
    background: url(https://algopagedev.com/work/theridersbench.com/wp-content/uploads/2026/03/h3-bg-img-1-5.png);
    background-size: cover;
    background-position: center;
}

/* Dark overlay gradient */
section.why-choose-us-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ff3c004d, #0c0b0b);
    z-index: 0;
}

section.why-choose-us-section .container {
    position: relative;
    z-index: 1;
}

/* Title */
h2.section-title {
    color: #fff;
    font-size: clamp(42px, 6vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p.section-subtitle {
    color: #ddd;
    font-size: 22px;
    margin-top: 10px;
}

/* Card */
.why-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 30px 25px;
    border-radius: 16px;
    height: 100%;
    text-align: center;
    transition: all 0.35s ease;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon */
.why-box .icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: inline-block;
    background: #ff3c006b;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(208,114,44,0.4);
    height: 75px;
    width: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Heading */
.why-box h4 {
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Text */
.why-box p {
    color: #ccc;
    font-size: 18px;
    text-align: center;
}

/* Hover Effects */
.why-box:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #d0722c;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.why-box:hover .icon {
    transform: rotate(5deg) scale(1.1);
}

/* COMMUNITY SECTION */

/* Animation base */
.rider-community-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Fade + slide animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Content Styling */
.community-content h2 {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.community-content p {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
}

.community-list li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
    transition: 0.3s;
}
.ftr-link ul#menu-primary-2 {
    padding-left: unset;
}
.ftr-link ul.details {
    padding-left: unset;
}
.ftr-link li a {
    font-size: 18px;
}

/* List hover animation */
.community-list li:hover {
    transform: translateX(8px);
    color: #ff3c00;
}

/* Button animation */
.community-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.community-btn::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ff3c00;
    transition: 0.4s;
    z-index: 0;
}

.community-btn:hover::before {
    width: 100%;
}

.community-btn span {
    position: relative;
    z-index: 1;
}

/* Image animation */
.community-image img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.community-image img:hover {
    transform: scale(1.08);
}

/* Floating effect */
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.community-image {
    animation: floatImage 4s ease-in-out infinite;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal{
	display: none !important;
}

/* TESTIMONIAL SECTION */

section.testimonial {
    background: #000;
    padding: 120px 0px;
	margin: 0 auto;
	text-align: center;
}
.item-content h4 {
    font-family: "Arimo", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
.item-content-wrapper::before {
    color: #00000082 !important;
	left: 6px !important;
    top: -4px !important;
}
.item-content-wrapper{
	padding: 50px !important;
    border-radius: 7px;
}
section.instagram {
    background: #000;
    margin: 0 auto;
    display: flex;
    justify-content: center;
	text-align: center;
	padding: 120px 0;
    background: #0000007a url(https://grandprix.qodeinteractive.com/wp-content/uploads/2019/09/h3-bck-img-4.png?id=1591);
    /* border-top: 1px solid; */
    background-repeat: no-repeat;
}
section.instagram h2 {
    text-align: center !important;
}
.boxes3{
	height:175px;
	width:153px;
} 
#n img{
	max-height:none!important;
	max-width:none!important;
	background:none!important
} 
#inst i{
	max-height:none!important;
	max-width:none!important;
	background:none!important
}

/* LOGO SLIDER */

.logo-slider {
  overflow: hidden;
  background: #fff;
  padding: 30px 0;
}

.logo-track {
  display: flex;
  width: calc(200px * 10); /* adjust based on logos */
  animation: scroll 20s linear infinite;
}

.logo-item {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  max-width: 150px;
/*   opacity: 0.7; */
  transition: 0.3s;
}

.logo-item img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* NEWSLETTER FORM */

/* Main Layout */
.modern-newsletter {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.newsletter-content.fade-up.active h2 {
    font-size: clamp(52px, 7vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 25px;
}
input.wpcf7-form-control.wpcf7-email {
    border-color: #d8462238 !important;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary.w-100 {
    padding: 18px;
}
/* Input Wrapper */
.input-field {
    position: relative;
    flex: 1;
}

/* Icon */
.mail-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px;
}

/* Input */
.custom-email {
    width: 100%;
    padding: 14px 20px 14px 40px;
    border-radius: 50px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
    font-size: 14px;
}
label.form-label {
    font-size: 18px;
}
/* Focus Effect */
.custom-email:focus {
    border-color: #ff3c00;
    box-shadow: 0 0 0 3px rgba(255,60,0,0.1);
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #d84622;
}
.col-md-4.btn-field {
    margin-top: 23px;
}
/* Button */
.custom-submit {
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    background: #000;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

/* Button Hover */
.custom-submit:hover {
    background: #ff3c00;
    transform: translateY(-2px);
}

/* Remove CF7 extra spacing */
.wpcf7-form p {
    margin: 0;
}

/* Error & Response */
.wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
}

.wpcf7-response-output {
    margin-top: 10px;
    font-size: 13px;
}

/* Mobile */
@media (max-width: 576px) {
    .modern-newsletter {
        flex-direction: column;
    }

    .submit-field {
        width: 100%;
    }

    .custom-submit {
        width: 100%;
    }
}
section.newsletter-section {
    padding: 60px 0px;
}
/* Footer */

footer {
    background: #000;
	padding-top: 60px;
	border-top: 1px solid #ffffff1c;
}
footer .border-start {
    border-left: 1px solid #dee2e640!important;
} 
img.ftr-logo {
    height: 127px;
    width: 164px;
    background: var(--white);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 12px;
}
.details li {
    margin-bottom: 17px;
}
a.footer-logo{
	width:100%;
	background: var(--white);
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
}
ul.ftrsmoicons a {
   background: #cccccc26;
    margin-bottom: 12px !important;
    display: inline-block;
    padding: 8px 10px;
    width: 70%;
    border-radius: 6px;
}
ul.ftrsmoicons a span {
    border-left: 1px solid #ffffff47;
    padding-left: 10px;
}
footer a.footer-logo img {
    width: 200px;
    padding: 2px 19px;
    margin-bottom: 0px;
}
footer #menu-quick-links a, #menu-services li a {
    font-size: 15px;
    display: block;
    padding-bottom: 15px;
    font-weight: 400;
}
footer li:last-child a {
    border: none !important;
}
.ftrcontact li:last-child {
    border: none;
}
.email-class {
    margin-left: 10px;
    text-align: start;
    margin-top: 8px;
}
a.web_link {
    margin: 6px 0px 0px 9px;
}
.contact-info {
    display: flex;
    align-items: center;
}
.contact-info p {
    display: flex;
    margin: 11px 0 0 8px;
}
footer h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 28px;
}
footer a, footer ul li {
    color: #fff;
    transition: 0.5s ease-in-out;
    font-weight: 300;
	line-height: 2;
}
footer i{
    font-size: 18px;
    margin-right: 6px;
}
footer p {
    margin-bottom: 0;
    color: #efefef;
} 
.ftricons {
    margin-top: 15px;
    column-gap: 5px;
}
.ftricons li i {
    color: #fff;
    font-size: 13px;
    background: #ff67021c;
    width: 32px;
    height: 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.ftr-contact {
    display: flex;
    column-gap: 20px;
    border-bottom: 1px solid #ffffff1f;
    padding-bottom: 25px;
}
.ftrcontact li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #1c1c1c;
}
.ftr-contact li i {
    color: var(--white);
    font-size: 16px;
    background: #ffffff1f;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
}
.ftr-contact li h4 {
    font-size: 18px;
    color: var(--white);
    margin: 18px 0 5px;
    font-weight: 600;
}
.ftrcontact li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 15px;
    padding: 17px 0;
    border-bottom: 1px solid #1c1c1c;
}
.ftrcontact li a {
    font-size: 16px;
}
.ftrcontact li a span {
    font-size: 15px;
}
.ftrcontact li i {
    font-size: 16px;
    margin: 0;
    color: var(--primary);
}
.ftr-newsletter input[type="submit"] {
    width: 100%;
    margin-top: 5px;
}
.copyright {
    padding: 15px 0;
    margin-top: 40px;
    border-top: 1px solid #ffffff1c;
    text-align: center;

}
.copyright .row {
   align-items: center;
}
.copyright p, .copyright p a {
    margin: 0 !important;
}
.copyright p a {
    font-weight: 400;

}
.copyright ul {
    display: flex;
    column-gap: 30px;
    justify-content: flex-end;
}
.copyright li{
	position:relative;
}
.copyright li:before {
   position: absolute;
    top: 9px;
    left: -12px;
    background: var(--white);
    content: '';
    height: 6px;
    width: 6px;
    border-radius: 30px;
}
.smoicons li a {
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 17px;
    transition: all ease-in-out .5s;
}
.smoicons li a{
    margin: 0;
   height: 30px;
    width: 30px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 15px;
}
 i.fas.fa-envelope.me-2
 {
    margin-top: 10px;
}
ul#menu-footer {
    padding-left: 0px;
}
 footer img {
    width: 200px;
    position: relative;
    top: -10px;
/*     height: 255px; */
    object-fit: cover;
}
/* Scroll To Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;    
    background: #ff3c00;
    color: #fff;
    border: none;  
    width: 45px;
    height: 45px;
    border-radius: 50%;   
    font-size: 18px;
    cursor: pointer;    
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
/* Hover Effect */
#scrollTopBtn:hover {
    background: #000;
    transform: translateY(-5px) scale(1.1);
}

/* Show Button Animation */
#scrollTopBtn.show {
    display: flex;
    animation: fadeInUp 0.4s ease;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}



/* Breadcrumb */

p#breadcrumbs {
    padding: 200px 0px 100px 0px;
    text-align: center;
    background: linear-gradient(268deg, #000000, #ff3c00bf, #000);
	margin-bottom: 0px;
}
p#breadcrumbs span {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}
#breadcrumbs a {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}


/* ABOUT US PAGE */

/*=============================
      About Page Css 
=============================*/
.about-inner-img {
    position: relative;
}
.about-card {
    position: absolute;
    top: 35%;
    width: 35%;
    right: 0;
    background: #fff;
	border-radius: 12px;
	animation: floatXY 8s ease-in-out infinite;
}
.about-card img {
    border-radius: 12px;
    padding: 5px;
}
.about-card-contain span {
    text-align: center;
    display: block;
    font-size: 14px;
    margin-bottom: 1rem;
}
.about-card-contain h4 {
    color: var(--blue);
    text-align: center;
    font-weight: 600;
}
.about-card-contain {
    padding: 10px;
}
.about-in-img {
    width: 90%;
    border-radius: 10px;
}
.trust-box {
    width: 80%;
    margin: auto;
    text-align: center;
    background: var(--blue);
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    border-right: 5px solid var(--primary);
}
.trust-box h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}
section.massage {
    text-align: center;
/*     background: #12880717; */
	padding: 80px 0px;
}
.dirtector-img-box{
	display: flex;
    justify-content: center;
}
.hexagon-wrapper {
    position: relative;
    width: 370px;
    margin: 0px auto 5rem;
}
.hexagon{
    width:100%;
    aspect-ratio:1/1.2;
    background:linear-gradient(135deg,#f9a825,#2ecc71);
    clip-path:polygon(
        50% 0%,     
        100% 25%,    
        100% 75%,    
        50% 100%,   
        0% 75%,      
        0% 25%      
    );
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.hexagon img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.badge-wrapper{
    position:absolute;
    bottom:-60px;
    left:50%;
    transform:translateX(-50%);
    width:160px;
    height:160px;
}
.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: rotate 12s linear infinite;
    background: #ff3c00b8;
    color: #fff;
    border: 5px solid #fff;
}
.rotating-text span{
    position:absolute;
    left:50%;
    top:50%;
    transform-origin:0 0;
    font-size:13px;
    font-weight:600;
    color:#ffffff;
}
.director-message h2 {
    font-family: "Arimo", sans-serif;
    color: #6c1a09;
    font-size: 30px;
}
.director-message p {
    font-size: 18px;
    line-height: 1.8;
    font-family: 'Lato';
}
.center-badge {
    position: absolute;
    width: 90px;
    height: 90px;
    background: #ff9a33;
    color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.center-badge i {
    font-size: 50px;
}
@keyframes rotate{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}
.director-message h5 {
    color: var(--primary);
    font-weight: 700;
    font-size: 25px;
}
.commite-bg {
    position: absolute;
    top: 0;
    opacity: 0.3;
}
.commite-bg img{
	animation: floatXY 8s ease-in-out infinite;
}
.commite-content {
    position: relative;
}
.training-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #ff3c0012;
    margin: 20px;
    border-radius: 20px;
}
.image-wrapper{
    position:relative;
}
.main-img {
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    justify-content: flex-end;
}
.main-img img {
    width: 90%;
    border-radius: 20px;
}
.small-img {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 60%;
    border-radius: 20px;
    overflow: hidden;
    border-top: 5px solid #ffffff;
    border-right: 5px solid #ffffff;
}
.small-img img{
    width:100%;
    border-radius:20px;
} 
.rating-card {
    position: absolute;
    top: 35px;
    left: 0;
    background: #ff3c0091;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    text-align: center;
    width: 170px;
	animation: floatXY 8s ease-in-out infinite;
}
.rating-card h3{
    font-size:28px;
    margin:10px 0;
	color: #fff
}
.rating-card h3 i{
	color: var(--primary);
}
.rating-card span{
    font-size:14px;
    color: #fff;
}
.section-tag{
    color:#ff3b3b;
    font-size:14px;
    margin-bottom:10px;
}
.step {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 10px;
    background: #ffffff8f;
    margin-bottom: 1rem;
    padding: 8px;
    border-radius: 10px;
}
section.training-section h2 {
    font-family: "Arimo", sans-serif;
    font-size: 32px;
    color: #6c1a09;
    font-weight: 600 !important;
    text-align: center;
    margin-bottom: 20px !important;
}
.step-icon {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #bcbbbb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bcbbbb;
    font-size: 24px;
}
.step h5{
    font-weight:600;
	color: #9f320d;
	font-size: 22px;
}
.step p{
    color:#5f5f5f;
    font-size:18px;
    margin-top:5px;
}
.training-section .heading {
    margin-bottom: 1rem;
}
.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 5px 0 #8080805e;
    background: #ffffff;
    height: 200px; 
}
.image-overlay h3 {
    font-weight: 700;
}
.image-overlay i {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 2rem;
}
.image-card img{
    position: absolute;
    inset: 0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transform:scale(1.1);
    transition:0.6s ease;
    z-index:1;
}
.image-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
    opacity:0;
    transition:0.5s ease;
    z-index:2;
}
.image-overlay{
    position:absolute;
    bottom:20px;
    left:20px;
    color:#000;
    z-index:3;
    transition:0.4s ease;
}
.image-card:hover img{
    opacity:1;
    transform:scale(1);
}
.image-card:hover::before{
    opacity:1;
}
.image-card:hover .image-overlay{
    color:#fff;
}
@keyframes floatXY{
	0% {
    transform: translate(0px, 0px) rotate(-2deg);
}
25% {
    transform: translate(10px, -15px) rotate(0deg);
}
50% {
    transform: translate(0px, -25px) rotate(2deg);
}
75% {
    transform: translate(-10px, -15px) rotate(0deg);
}
100% {
    transform: translate(0px, 0px) rotate(-2deg);
}
}

/* Join Community Section */
.about-title {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    white-space: nowrap;
    background: linear-gradient(to bottom, #ff3c0080 30%, rgb(255 255 255 / 0%) 76%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
 
.carousel-container{
    width: 100%;
    height: 450px;
    position: relative;
    perspective: 1000px;
    margin-top: 80px;
}
 
.carousel-track {
	top: 70px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
 
.card {
    position: absolute !important;
    width: 280px !important;
    height: 380px !important;
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer !important;
}
 
.card img {
    width: 100% !important; 
    height: 100% !important;
    object-fit: cover !important;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
 
.card.center {
    z-index: 10;
    transform: scale(1.1) translateZ(0);
}
 
.card.center img {
    filter: none;
}
 
.card.left-2 {
    z-index: 1;
    transform: translateX(-400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}
 
.card.left-2 img {
    filter: grayscale(100%);
}
 
.card.left-1 {
    z-index: 5;
    transform: translateX(-200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}
 
.card.left-1 img {
    filter: grayscale(100%);
}
 
.card.right-1 {
    z-index: 5;
    transform: translateX(200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}
 
.card.right-1 img {
    filter: grayscale(100%);
}
 
.card.right-2 {
    z-index: 1;
    transform: translateX(400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}
 
.card.right-2 img {
    filter: grayscale(100%);
}
 
.card.hidden {
    opacity: 0;
    pointer-events: none;
}
 
.member-info {
    display: none;
    text-align: center;
    margin-top: 40px;
    transition: all 0.5s ease-out;
}
 
.member-name {
    color: rgb(8, 42, 123);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
 
.member-name::before,
.member-name::after {
    content: "";
    position: absolute;
    top: 100%;
    width: 100px;
    height: 2px;
    background: rgb(8, 42, 123);
}
 
.member-name::before {
    left: -120px;
}
 
.member-name::after {
    right: -120px;
}
 
.member-role {
    color: #848696;
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 0;
    margin-top: -15px;
    position: relative;
}
.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 80px;
}
 
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(8, 42, 123, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
 
.dot.active {
    background: #ff3c007d;
    transform: scale(1.2);
}
 
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff3c00;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    border: none;
    outline: none;
    padding-bottom: 8px;
}
 
.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}
 
.nav-arrow.left {
    left: 20px;
    padding-right: 6px;
}
 
.nav-arrow.right {
    right: 20px;
    padding-left: 6px;
}
 
@media (max-width: 768px) {
    .about-title {
        font-size: 38px;
    }
 
    .card {
        width: 200px;
        height: 280px;
    }
 
    .card.left-2 {
        transform: translateX(-250px) scale(0.8) translateZ(-300px);
    }
 
    .card.left-1 {
        transform: translateX(-120px) scale(0.9) translateZ(-100px);
    }
 
    .card.right-1 {
        transform: translateX(120px) scale(0.9) translateZ(-100px);
    }
 
    .card.right-2 {
        transform: translateX(250px) scale(0.8) translateZ(-300px);
    }
 
    .member-name {
        font-size: 2rem;
    }
 
    .member-role {
        font-size: 1.2rem;
    }
 
    .member-name::before,
    .member-name::after {
        width: 50px;
    }
 
    .member-name::before {
        left: -70px;
    }
 
    .member-name::after {
        right: -70px;
    }
}
section.community {
    padding: 0 0 65px 0px;
} 


/* ================== TABLET ================== */
@media (max-width: 1024px) {

    .about-title {
        font-size: 3.5rem;
    }

    .carousel-container {
        height: 380px;
        margin-top: 60px;
    }

    .carousel-track {
        top: 40px;
    }

    .card {
        width: 220px !important;
        height: 300px !important;
    }

    /* Adjust spacing */
    .card.left-2 {
        transform: translateX(-260px) scale(0.8) translateZ(-200px);
    }

    .card.left-1 {
        transform: translateX(-140px) scale(0.9) translateZ(-80px);
    }

    .card.right-1 {
        transform: translateX(140px) scale(0.9) translateZ(-80px);
    }

    .card.right-2 {
        transform: translateX(260px) scale(0.8) translateZ(-200px);
    }

    .nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}


/* ================== MOBILE ================== */
@media (max-width: 768px) {

	.carousel-control-next {
		right: 1% !important;
	}
	.carousel-control-prev {
		left: -1% !important;
	}
    section.community {
        padding: 20px 0 50px;
    }
	
    .about-title {
        font-size: 32px;
        position: relative;
        transform: none;
        left: auto;
        text-align: center;
        margin-bottom: 20px;
    }

    .carousel-container {
        height: 300px;
        margin-top: 20px;
    }

    .carousel-track {
        top: 20px;
		width: 60%;
		margin: 0 auto;
    }

    .card {
        width: 180px !important;
        height: 240px !important;
    }

    /* Tight spacing for mobile */
    .card.left-2 {
        transform: translateX(-180px) scale(0.7) translateZ(-150px);
    }

    .card.left-1 {
        transform: translateX(-90px) scale(0.85) translateZ(-60px);
    }

    .card.right-1 {
        transform: translateX(90px) scale(0.85) translateZ(-60px);
    }

    .card.right-2 {
        transform: translateX(180px) scale(0.7) translateZ(-150px);
    }

    .member-name {
        font-size: 1.6rem;
    }

    .member-role {
        font-size: 1rem;
    }

    .member-name::before,
    .member-name::after {
        display: none;
    }

    .dots {
        margin-top: 30px;
    }

    .nav-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .nav-arrow.left {
        left: 5px;
    }

    .nav-arrow.right {
        right: 5px;
    }
}


/* ================== SMALL MOBILE ================== */
@media (max-width: 480px) {

    .card {
        width: 150px !important;
        height: 200px !important;
    }

    .card.left-1,
    .card.right-1 {
        opacity: 0.6;
    }

    .card.left-2,
    .card.right-2 {
        opacity: 0;
    }

    .about-title {
        font-size: 26px;
    }
}


/* Product page */

/* HOVER CARD */
.product-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    transform: translateY(-8px) scale(1.01);
}


/* ===============================
   IMAGE WRAPPER
================================= */
.product-img-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 10px;
}


/* ===============================
   IMAGE STYLING
================================= */
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.5s ease;
}

/* MAIN IMAGE */
.product-img-wrap .org-img {
    position: relative;
    z-index: 1;
}

/* HOVER IMAGE */
.product-img-wrap .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1);
}


/* ===============================
   HOVER EFFECT (ZOOM + SWAP)
================================= */
.product-card:hover .org-img {
    opacity: 0;
    transform: scale(1.1);
}

.product-card:hover .hover-img {
    opacity: 1;
    transform: scale(1.1);
}


/* ===============================
   SHINE EFFECT (PREMIUM)
================================= */
.product-img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
}

.product-card:hover .product-img-wrap::after {
    animation: shine 0.8s;
}

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


/* ===============================
   PRODUCT TITLE & PRICE
================================= */
.product-title {
    font-size: 22px;
    margin: 12px 0 5px;
    font-weight: 600;
}

.product-price {
    font-size: 15px;
    color: #c49b42;
    font-weight: 600;
}


/* ===============================
   ACTION BUTTONS (RIGHT SIDE)
================================= */
.product-hover-actions {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s ease;
}

/* SLIDE IN */
.product-card:hover .product-hover-actions {
    right: 12px;
    opacity: 1;
}


/* BUTTON STYLE */
.product-hover-actions a {
    width: 40px;
    height: 40px;
    background: #ffcc00;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;

    transform: translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

/* STAGGER ANIMATION */
.product-card:hover .product-hover-actions a:nth-child(1) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.product-card:hover .product-hover-actions a:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.product-card:hover .product-hover-actions a:nth-child(3) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.3s;
}

/* HOVER EFFECT */
.product-hover-actions a:hover {
    background: #e6b800;
    transform: scale(1.15);
}


/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
    .product-card {
        height: auto !important;
    }

    .product-img-wrap {
        height: 220px;
    }
}
.yith-wcan-filters {
    background-color: #23272100 !important;
    margin-bottom: 30px;
}
.yith-wcan-filters .yith-wcan-filter {
    margin-bottom: 30px !important;
    border-bottom: 2px solid #00000047 !important;
    border-radius: 8px !important;
    padding-top: 14px !important;
}
.search-field-container {
    display: none;
}
.product-card {
    border: 1px solid #ff3c0069;
}
section.gems-product-page {
    padding: 60px 0px;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper{
    border: 1px solid rgb(255 175 150);
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .matching-items::-webkit-scrollbar-thumb {
    background: #000 !important;
}
section.gems-product-page {
    padding: 60px 10px;
}

/* Hover CSS */
.product-img-wrap{
position:relative;
width:100%;
height:260px;
overflow:hidden;
border-radius:10px;
}

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

/* overlay */
/* OVERLAY CONTAINER (RIGHT SIDE) */
.product-hover-overlay {
    position: absolute;
    top: -100%; /* start hidden from top */
    right: 10px;
    width: auto;
    height: auto;

    display: flex;
    flex-direction: column; /* vertical */
    gap: 12px;

    opacity: 0;
    transition: all 0.4s ease;
}

/* SHOW ON HOVER (SLIDE DOWN) */
.product-card:hover .product-hover-overlay {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 1;
}
/* icons */
.product-hover-overlay a {
    width: 40px;
    height: 40px;
    background: #ff3c00bd !important;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-hover-overlay a:hover{
transform:scale(1.2);
background:#e6b800;
}
/* STAGGER EFFECT */
.product-card:hover .product-hover-overlay a:nth-child(1) {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.product-card:hover .product-hover-overlay a:nth-child(2) {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.product-card:hover .product-hover-overlay a:nth-child(3) {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

/* HOVER EFFECT */
.product-hover-overlay a:hover {
    background: #e6b800;
    transform: scale(1.15);
}

/* Filter search bar hide  */
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .search-field-container .search-field {
    padding-right: 40px;
    width: 100%;
    display: none !important;
}

/* Pricing slider */
.price_slider_wrapper {
    margin-top: 10px;
}

.ui-slider-range {
    background: #c9a646; /* gold look */
}
.price-slider-box {
    padding: 15px;
}

#price-slider {
    margin: 25px 0;
    height: 6px;
    background: #e5e5e5;
    border-radius: 10px;
}

/* active track */
.ui-slider-range {
    background: linear-gradient(90deg, #c9a34e, #e6c76a);
    border-radius: 10px;
}

/* 🔵 single circle handle */
.ui-slider-handle {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid #c9a34e;
    border-radius: 50%;
    top: -6px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.ui-slider-handle:hover {
    transform: scale(1.2);
    background: #c9a34e;
}

.price-values {
    font-size: 14px;
    font-weight: 500;
}
.ui-slider {
    position: relative;
}

.ui-slider-handle {
    position: absolute;
    z-index: 2;
}

/* Product Side bar Promo section  */
.sidebar-promo {
    width: 100%;
    height: 436px;
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('http://algopagedev.com/work/artizgems.com/wp-content/uploads/2026/03/promo.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 21px;
    font-family: 'Serif', 'Times New Roman', serif;
    color: #ffffff;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 6px;
}

.discount {
    font-size: 80px;
    font-weight: 300;
    margin: 0;
    letter-spacing: -2px;
}

.sub-title {
    font-size: 24px;
    font-weight: 300;
    margin-top: 4px;
    letter-spacing: 1px;
    text-align: center;
}
.jewelry-container {
    margin: 26px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.jewelry-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.tagline {
    font-size: 28px;
    position: absolute;
    bottom: 26px;
    width: 100%;
    font-style: normal;
    color: #fff;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown.open {
	border-color: rgb(255 60 0 / 28%) !important;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > label > a:hover {
    color: #d0722c !important;
}
h4.filter-title {
    color: #831619 !important;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.filter-sidebar h3 {
    color: #3e3d3d;
    font-size: 22px;
}

/* Single Product Page */

.prdct-dtls-pg {
    padding: 80px 0px;
}
.prdct-dtls-pg h2 {
    color: #9b251e;
    font-size: 26px;
    font-weight: 700;
	margin-bottom: 40px;
}
.woocommerce-product-details__short-description ul {
    padding-left: 0;
}
span.woocommerce-Price-amount.amount {
	color: #9b251e;
	font-size: 26px;
}
div#tab-description ul li {
    font-size: 18px;
    line-height: 1.5;
}
span.posted_in a {
    color: #9b251e;
    font-weight: 600;
}
.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: left;
    background: linear-gradient(-45deg, #000000, #ff3c00, #c42025);
}
.woocommerce .quantity .qty {
    width: 50px;
    text-align: center;
    height: 35px;
    border: 1px solid #9b251e6b;
    border-radius: 5px;
}
div#tab-description p {
    font-size: 20px;
	color: #000;
}
p.meta_tags {
    display: none;
}
.comments {
    display: none;
}
ul.products.columns-4 li {
    border: 1px solid #ff3c0054;
    height: 465px;
    padding: 10px !important;
    border-radius: 5px;
    background: #3333330f;
    text-align: center;
}
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart{
	color: #ff3c00bd !important;
    background-color: #ff3c0029 !important;
}
img.wp-post-image {
    width: 500px !important;
    height: 300px !important;
    object-fit: contain;
}
.woocommerce-product-gallery__image {
    box-shadow: 0px 0px 5px #ff3c0029;
    border-radius: 10px;
}

/* ================================
   Contact Section
================================ */
.contact-inner-section .main-heading,
.contact-form .main-heading{
    text-align: center;
    font-size: 50px;
    margin-bottom: 4rem;
}
.inner-contact-form {
    width: 70%;
    margin: auto;
}
.form-control {
   background: #f9f9f9;
   border: 1px solid #ddd;
   color: #000;
	border-radius: 0;
	border-color: #d8462238 !important;
}
.form-control:focus {
   border-color: var(--primary);
   box-shadow: none;
} 
section.map-section .container-fluid {
    width: 100%;
    margin: 0;
    padding: 0;
}
    .info-card {
        padding: 35px 25px;
        background: #fff;
        border-radius: 10px;
        border: 1px solid #d8462238;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        transition: 0.3s;
		display: flex;
		gap: 30px;
    }
	.info-card a{ 
		color: #000 !important;
		text-decoration: none;		
	}
    .info-card:hover {
        border-color: #d8462238;
        transform: translateY(-4px);
    }
    .info-card i{
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .info-card h6 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #771c0d;
    }
    .map-section iframe {
        width: 100%;
        height: 450px;
    }
section.contact-inner-section {
    padding: 40px 0px;
}
h3.main-heading {
    color: #771c0d;
    font-size: 34px !important;
    font-weight: 500;
}
div#wpcf7-f79-o1 {
    border: 1px solid #ff3c0040;
    padding: 10px;
    border-radius: 10px;
}
h2.woocommerce-loop-product__title {
    color: #721911;
    font-size: 17px !important;
    font-weight: 600;
}
.map-section {
    margin-top: 30px;
}
section.commite {
    display: none;
}
a.wc-block-components-product-name {
    color: #771b0e;
    font-size: 16px !important;
}
.wc-block-cart-item__prices {
    font-size: 16px !important;
    font-weight: 700;
}
.wc-block-components-product-metadata__description p {
    font-size: 14px !important;
}
th.wc-block-cart-items__header-image span {
    color: #701812;
    font-size: 22px;
}
h2.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
    color: #701812;
    font-size: 22px;
}
th.wc-block-cart-items__header-total {
    color: #701812;
    font-size: 22px;
}
.wp-block-woocommerce-cart.alignwide {
    padding: 80px 0px;
}
.wc-block-components-button__text {
    background: #ff3c00ad;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
}
button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
    border: none;
    background: transparent;
}
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    border: none;
    background: transparent;
}
li#menu-item-199 {
    color: #ff3c00b8;
}
.woocommerce.columns-4 {
    padding: 40px 0px;
}
div#fkcart-floating-toggler {
    bottom: 95px !important;
    right: 18px !important;
}
ul#menu-footer li a {
    font-size: 18px;
}
#fkcart-modal .fkcart-item-wrap .fkcart--item .fkcart-item-title{
	font-size: 18px;
}
#fkcart-modal .fkcart-coupon-area .fkcart-coupon-head .fkcart-coupon-title{
	font-size: 18px;	
}
.fkcart-summary-text {
    font-size: 16px !important;
}
.fkcart-summary-text strong {
    font-size: 18px !important;
    font-weight: 700 !important;
}

div#tab-description ul {
    padding-left: 0px;
}
.info-card {
    font-size: 18px;
}
.info-card a{
    font-size: 18px;
}
span.page-numbers.current {
    background: #ff3c00bf;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
}
a.page-numbers {
    color: #000;
    padding: 5px;
    font-weight: 500;
    font-size: 18px;
}
.header-menu ul.sub-menu li .sub-menu {
    display: flex;
    flex-direction: column;
}
.logo-slider h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000;
    letter-spacing: -0.01em;
    margin-bottom: 50px;
    text-align: center;
}

div#hamburger-10 {
    display: none;
}

/* Responsive Css */

@media (max-width: 1024px){
	.wave-line {
		display: none;
	}
	.gif-img{
		display: none;		
	}
	.watermark{
		font-size: 110px;
	}
	.button {
    	width: 50% !important;
	}
	a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    	font-size: 12px;
	}
	span.woocommerce-Price-amount.amount {
    	font-size: 16px;
	}
	h2.woocommerce-loop-product__title {
    	font-size: 14px !important;
	}
	ul.products.columns-4 li{
		height: 400px;
	}
	.primary-nav li {
		margin: 0 6px;
	}
	.sp-lt {
		margin-left: 0px;
		margin-right: 0px;
	}
	.logo-txt h4 {
    	font-size: 14px;
	}
}
@media (max-width: 767px){
	div#hamburger-10 {
    	display: block !important;
	}
	div#gpSlider .row.align-items-center.hero-height {
    	flex-direction: column-reverse;
	}
	.hero-right h1 {
    	font-size: 38px;
	}
	.hero-right p {
		max-width: 100%;
	}
	.collection-heading{
		 font-size: clamp(38px, 5vw, 56px);
	}
	.protection-title{
		 font-size: clamp(38px, 5vw, 56px);	
	}
	.about-text h2{
		 font-size: clamp(38px, 5vw, 56px);	
	}
	h2.collection-heading{
		 font-size: clamp(38px, 5vw, 56px) !important;		
	}
	.newsletter-content.fade-up.active h2{
		 font-size: clamp(38px, 5vw, 56px) !important;		
	}
	.watermark {
        font-size: 80px;
    }
	.button {
        width: 100% !important;
    }
	.community-image {
		margin-top: 20px;
	}
	 .watermark {
        font-size: 38px;
    }
	.slider-logo {
    	width: 40%;
	}
	.header-icons {
    	justify-content: flex-end !important;
	}
	.logo-txt h4 {
        display: none;
    }
	.community-section{
		padding: 50px 0px 65px 0px;
	}
	section.testimonial{
		padding: 60px 0px;
	}
	section.instagram{
		padding: 60px 0px;
	}
	footer img {
		width: 100px;
	}
	footer {
		padding-top: 35px;
	}
	footer h3 {
    	font-size: 18px;
    	margin-bottom: 16px;
	}
	ul#menu-footer li a {
   	 font-size: 14px;
	}
	.ftr-link li a {
    	font-size: 14px;
	}
	.community-content p {
		font-size: 16px;
	}
	.community-list li {
		font-size: 16px;
	}
	h3.main-heading
 	{
    	font-size: 22px !important;
		margin-bottom: 30px !important;
	}
	label.form-label {
    	font-size: 14px;
	}
	.info-card {
		padding: 15px 20px;
	}
	.info-card h6 {
		font-size: 20px;
	}
	ul.products.columns-4 li {
        height: 340px;
    }
	.carousel-track {
		top: 0px;
	}
	section.community {
    	padding: 20px 0px;
	}
	.rider-community-section {
    	padding: 40px 0;
	}
}
@media (max-width: 360px){
	h2.collection-heading {
        font-size: clamp(26px, 5vw, 56px) !important;
    }
	.about-text h2 {
        font-size: clamp(26px, 5vw, 56px);
    }
	.about-text p {
		font-size: 14px;
	}
	.community-content h2 {
		font-size: 26px;
	}
	.logo-slider h2{
	   font-size: 26px;
	}
	.newsletter-content.fade-up.active h2{
        font-size: clamp(26px, 5vw, 56px) !important;		
	}
	section.training-section h2{
		font-size: 22px;
	}
	.step h5{
		font-size: 16px;
	}
	.step p{
		font-size: 14px;
		line-height: 1.8;
	}
	.hexagon-wrapper {
		width: 300px;
	}
	.director-message h2{
		font-size: 22px;
	}
	.director-message p {
		font-size: 14px;
	}
}