/*========== Global CSS =========*/
/*@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Oswald:wght@200..700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');

/*@font-face {*/
/*  font-family: 'Akira';*/
/*  src: url('../fonts/AkiraExpanded.woff2') format('woff2');*/
/*  font-weight: normal;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/

*{
  font-family:"Zalando Sans Expanded", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
body{
  background-color:#eaeaea;
  scroll-behavior: smooth;
}
a{
  text-decoration:none !important;
}
.pd-15{
  padding:10px 15px;
}

.me-9{
  margin-right:9rem;
}

.loading {
  pointer-events: none;
  filter: blur(1px);
  transition: all 0.2s ease;
}

.lazy-img {
    filter: blur(10px);
    opacity: 0;
    transition: all 0.6s ease;
}

.lazy-img.loaded {
    filter: blur(0);
    opacity: 1;
}
.h-35{
  height:45px;
}

.cart-bounce {
    animation: bounce 0.3s ease;
}

@keyframes bounce {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.form-error{
  color:crimson;
}

/* ===== HEADER STICKY ===== */
#siteHeader {
  position: fixed;
  z-index: 9999;
  width: 100%;
  left: 0;
  right: 0;
  top:0;
}

/* #siteHeader.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.3s ease;
}

/* Smooth entry */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Existing CSS (unchanged) */
.top-bar {
  height: 35px;
  overflow: hidden;
  width:100%;
}

.main-nav{
  position: fixed;
  left:0;
  right:0;
  width:100%;
  top:35px;
  background-color:#970803 !important;
}

.marquee-vertical {
  height: 35px;
  overflow: hidden;
  margin: 0 auto;
}

.marquee-content {
  display: inline-block;
  animation: marqueeUp 10s linear infinite;
  font-size: 10px;
  font-family: "Zalando Sans Expanded", sans-serif;
}

@keyframes marqueeUp {
  0% { transform: translateY(100%); }
  100% { transform: translateY(-100%); }
}

/*========= Hero section =========*/
.hero-see-all {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}



.hero-see-all a,.see-all a {
  color: #fff;
  font-size: 12px;
  text-decoration: none !important;
  text-transform: uppercase;
  position: relative;
  opacity: 0.85;
  transition: 0.3s;
  background: #af0800;
  padding: 10px;
  border-radius: 20px;
}

/* .hero-see-all a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.7;
} */

.hero-see-all a:hover {
  opacity: 1;
}


.hero-video {
  position: relative;        /* MUST */
  width: 100%;
  overflow: hidden;          /* MUST */
}

.hero-video video {
  position: absolute;        /* MUST */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* KEY */
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
}



.section-wraper{
  padding:30 20;
}



/* ===== PRODUCT SECTION ===== */
.product-section {
  /* background: #fff; */
}

.section-title {
  /* font-size: 14px;
  font-weight: 400;
  margin: 0; */
  font-size: 10px;
  font-weight: 900;
  margin: 0;
  background: #960803;
  display: inline-block;
  padding: 10px;
  color: #fff;
  width: auto;
  border-top-right-radius: 45px;
  border-bottom-right-radius: 45px;
  border-left: 5px solid #0e0f12;
}

.section-link {
  /* font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
  padding-bottom: 4px;
  background-color:#eaeaea;
  padding:10px 15px; */
  font-size: 10px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ad0800;
  border: 1px solid #970803;
  padding-bottom: 4px;
  background-color: #eaeaea;
  padding: 10px 15px;
  transition: 1s ease-in-out;
}

.section-link:hover {
  opacity: 0.7;
}

.section-link-pransparent{
  margin: auto;
  border: 1px solid #000;
  padding: 1.5vw 1.8vw;
  color: #000;
  font-size: 16px;
  font-family: "Zalando Sans Expanded", sans-serif;
  margin-top: 30px;
  transition: 0.3s linear;
}

.section-link-pransparent:hover {
    background: #000;
    color: #fff;
    border-radius: 20px;
}

/* Product Card */
.product-info{
  padding:10px 15px;
}

.product-info p{
  color:#6b6b6b
}

.product-card{
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding-right:0;
  min-height: 500px !important;
  max-height: 500px !important;
  transition: transform 2s ease;
}

.product-img{
  height: 500px;
  overflow: hidden;
  position: relative;
}

.product-img img:hover{
  transform: scale(1.05);
}

.product-card h6 {
  margin: 0px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #970803;
  font-family: "Zalando Sans Expanded", sans-serif;
}

.product-card p {
  font-size: 12px;
  font-weight: 400;
  color:#6b6b6b;
  font-family: "Zalando Sans Expanded", sans-serif;
}

.counts-products{
  margin-left:25px;
}

.out-stock{
  position: absolute;
  top: 0;
  z-index: 9999;
  background: #dfdfdf;
  padding: 10px;
  margin: 0 auto;
  border: 1px solid #b4b4b4;
}



/* VIDEO SLIDER */
.video-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle {
  position: relative;
  width: 160px;
  height: 160px;
}

.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 10s linear infinite;
}

.circle-text span {
  position: absolute;
  left: 50%;
  top: 0;
  transform-origin: 0 80px;
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
}

.logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 65px;
  height: 65px;
  border-radius: 50%;
      background: #960803;
    color: #c5c5c5;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}




/* MARQUE IN STRIP */

.strip-marquee-right {
  width: 100%;
  overflow: hidden;
  background: #8d0702;
  color: #fff;
  padding: 10px 0;
}

.marquee-left-right {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content-rows {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marqueeRTL 100s linear infinite;
  font-size: 16px;
}
.marquee-content-rows label{
  padding:15px;
  margin:0px 15px;
}

/* Right to Left Animation */
@keyframes marqueeRTL {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}




/* =============== filter-row ============ */
.filter-row {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-dropdown .dropdown-menu {
  min-width: 300px;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 0;
  border: 0px;
}

.filter-dropdown .form-check-label {
  cursor: pointer;
  font-size: 14px;
}

.filter-dropdown .reset-filter {
  font-size: 12px;
  font-weight: 400;
  color:#777
}

.selected-count{
  font-size: 12px;
}

.filter-row .dropdown .dropdown-menu.show{
  transform: translate(0px, 65px) !important;
}

.filter-row .dropdown-menu .form-check{
  padding: 0px;
}

.filter-row .btn{
  border: 0 !important;
  border-bottom: 1px solid #777 !important;
  border-radius: 0;
}

/* =========== new arrivals ============== */
.p-navbar {
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.p-view {
  font-size: 12px;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}

/* IMPORTANT PART */
.p-menu-scroll {
  display: flex;
  width: 100%;
}

.p-menu-scroll .nav-item {
  flex: 1 0 auto; /* equal spacing */
  text-align: center;
  min-width: 150px;
}

.p-menu-scroll .nav-link {
  font-size: 12px;
  color: #000;
  white-space: nowrap;
  padding: 0;
}

/* Scroll behavior */
.p-menu-scroll {
  overflow-x: auto;
  scrollbar-width: none;
}
.p-menu-scroll::-webkit-scrollbar {
  display: none;
}






/* ===== FOOTER ===== */
.site-footer {
  background: #970803;
  font-family: "Zalando Sans Expanded", sans-serif;
  color: #111;
}

/* TOP */
.footer-top {
  padding: 60px 80px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  min-width: 220px;
}

.logo-col {
  max-width: 420px;
}

.brand-logo {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 48px;
  margin-bottom: 20px;
    max-width: 255px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 12px;
  color: #fff;
}

.footer-col ul li a:hover {
  color: #000;
}

.copyright {
  font-size: 11px;
  color: #fff;
}

/* CONNECT BAR */
.footer-connect {
  background: #960803;
  color: #fff;
  padding: 14px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 900;
}

.footer-connect span{
    font-size:20px;
    font-weight: 900;
}

.footer-connect a {
  color: #fff;
  text-decoration: none;
  margin-left: 40px;
  font-size: 25px;
}

/* BOTTOM */
.footer-bottom {
  padding: 40px 80px;
}

.footer-bottom h4 {
  font-size: 12px;
  margin-bottom: 15px;
}

.search-title {
  font-size: 11px;
  margin-top: 20px;
  color: #555;
}

.search-text {
  font-size: 11px;
  color: #777;
  line-height: 1.8;
}





/* Chek mark css */
.container-check-box {
  display: block;
  position: relative;
  padding-left: 55px;
  margin-bottom: 18px;
  cursor: pointer;
  font-size: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container-check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-check-box:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-check-box input:checked ~ .checkmark {
  background-color: #2c2c2c;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-check-box input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-check-box .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}




/* CART SLIDE CSS */
#cart-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  display:none;
  z-index:999;
}

#slide-cart{
  position:fixed;
  top:105px;
  right:-500px;
  width:500px;
  bottom: 0px;
  background:#f6f6f6;
  z-index:1000;
  transition:.3s;
  display:flex;
  flex-direction:column;
  overflow: scroll;
}

#slide-cart.open{ right:0; }
#cart-overlay.show{ display:block; }

.cart-header{
  padding:12px;
  text-align:right;
}
.cart-header h4{
  float: left;
}

.cart-header .close{
  cursor:pointer;
  font-size:18px;
}

.cart-item{
  display:flex;
  padding:15px;
  gap:12px;
}

.cart-item img{
  width:70px;
  height:auto;
}

.cart-info{
  flex:1;
  font-size:13px;
}

.cart-info h6{
  margin:0;
  font-size:13px;
  font-weight:600;
}

.cart-info .price{
  margin:4px 0;
}

.qty-box{
  display:flex;
  align-items:center;
  border:1px solid #000;
  width:90px;
  justify-content:space-between;
  padding:4px 8px;
}

.qty-box button{
  background:none;
  border:none;
  font-size:16px;
  cursor:pointer;
}

.delete{
  cursor:pointer;
  font-size:16px;
}

.cart-footer{
  margin-top:20px;
  padding:15px;
  border-top:1px solid #ccc;
}

.total-row{
  display:flex;
  justify-content:space-between;
  font-size:12px;
}

.tax-text{
  font-size:10px;
  margin:8px 0 15px;
}

.checkout-btn{
  width:100%;
  background:#000;
  color:#fff;
  padding:12px;
  border:none;
  cursor:pointer;
}

.header-search {
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;
  height: 70px;
  background: #ffffff00;
  z-index: 9999999;
}

.header-search input {
  max-width: 100%;
}

input#headerSearchInputDesktop{
  height:55px;
}


/* 

Custom changes on bootstrap

*/
.bg-danger-2{
  background-color: rgb(174 8 0) !important;
}
.search-results{
  background: #fff;
  padding: 15px 0px;
  display: flex;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-right: 1px solid;
}
.search-left{
  float: left;
  width:25%;
  padding: 0px 20px;
}
.search-left h6{
  margin-bottom: 20px;
  padding-bottom: 10px;
}
#suggestion-list,#suggestion-list-desktop{
  margin:0;
  padding:0;
}
#suggestion-list li,#suggestion-list-desktop li{
  list-style: none;
  font-weight: 300;
  margin-bottom: 10px;
}
#suggestion-list li:hover,#suggestion-list-desktop li:hover{
  background: #b8b8b8;
  cursor: pointer;
  padding: 6px;
}
#product-list-search,#product-list-search-desktop{
  width:100%;
}
#product-list-search img,#product-list-search-desktop img{
  width:40px;
  height:40px;
  border-radius: 50%;
  float: left;
  margin-right: 15px;
}
.search-right{
  width: 75%;
  padding: 0px 20px;
  border-left: 1px solid;
}
.search-product{
  width: auto;
  padding: 10px 20px;
  cursor: pointer;
}
.search-product span{
  font-size: 10px;
}
.search-product:hover{
  background: #f4f4f4;
}

.animate-icon .fa{
  font-size: 40px;
  position: relative;
  animation: rotateLeftRight 2.5s linear infinite;
  transform-style: preserve-3d;
  cursor: pointer;
}

@keyframes rotateLeftRight {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

#jellyLogo{
  transition: transform 0.15s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

#mainNavbar .nav-link:focus, #mainNavbar .nav-link:hover,.main-nav a:hover,#mainNavbar .nav-link {
    color: #d7d7d7 !important;
    font-weight: 600;
}
#mainNavbar .icon-group i{
  font-size:25px;
}

#siteHeaderDesktop i {
    cursor: pointer;
}

#siteHeaderDesktop i:hover {
    opacity: 0.7;
}

#siteHeader2{
  display:none;
}
.bg-danger{
  background-color: #960803 !important;
}

#mainNav i{
  color:#fff !important;
  font-size: 25px !important;
  text-shadow: 0.5px 0.5px 0.5px #000000;
}

 .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    top:95px;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .desktop-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1002;
    padding: 15px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .desktop-menu.active {
    transform: translateY(90px);
  }


  .desktop-menu-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
  }

  .desktop-menu-list li a {
        display: block;
        padding: 12px 0;
        color: #000;
        font-size: 18px;
        font-weight: 900;
        border-bottom: 0.5px solid #f3f3f3;
  }
  div#siteHeaderDesktop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
  }
  .gutter-gap-top-lg{
    margin-top:95px;
  }

  .description-box{
    font-family: "Zalando Sans Expanded", sans-serif;
  }
  
    .no-select {
        -webkit-user-select: none; /* Chrome, Safari */
        -moz-user-select: none;    /* Firefox */
        -ms-user-select: none;     /* IE/Edge */
        user-select: none;         /* Standard */
    }