:root{
    --dark-black: #000000;
    --dark-gray: #545454;
    --gray: #a6a6a6;
    --red: #a82526;
    --dark-red: #bc1826;
    --light-gray: #d9d9d9;
    --bright-red: #de0f3f;
    --bright-gray: #efede9;
    --white: #ffffff;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
}

*{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.whatsapp-main {
    position: fixed;
    bottom: 40px;
    right: 0;
    transform: translateX(-22px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    width: 4rem;
}

.whatsapp-main a {
    display: block;
    margin-bottom: 0.5rem;
}

.whatsapp-img, .whatsapp-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: .5rem;
}

@media (max-width: 600px){
    .whatsapp-main{
        width: 3rem;
    }
}

.header{
    background-image: url(header-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
}

.navbar{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8%;
}

.logo img{
    display: block;
    width: 10vw;
    height: auto;
    margin: 1rem;
}

nav{
    z-index: 999;
    width: 100%;
}  

.small-panel{
    background: var(--dark-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1rem;
}

.small-panel h2{
    color: var(--white);
    font-size: 1.05vw;
    font-weight: 500;
}

.custom-translate {
    position: relative;
    display: inline-block;
}

#selected-lang {
    background: #000;
    border: 2px solid #fff;
    padding: .6rem .6rem;
    cursor: pointer;
    border-radius: 5px;
    font-size: .8rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

#selected-lang img {
    width: 1.5rem;
    height: auto;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: -10%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    list-style: none;
    padding: 5px 0;
    width: 180px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}
  .lang-menu.show {
    display: block;
  }
  .lang-menu li {
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }
  .lang-menu li:hover {
    background: #f2f2f2;
  }

  .lang-menu img {
    width: 20px;
    height: 14px;
  }

  .search-bar {
    display: flex;
    max-width: 500px;
    margin: 1rem auto 4rem auto;
}

.search-bar input {
    flex: 1;
    padding: 13px;
    border: 1px solid #ccc;
    border-radius: 8px 0 0 8px;
    font-family: 'Poppins', sans-serif;
    width: 21vw;
}

.search-bar button {
    padding: 8px 12px;
    border: none;
    background: var(--dark-red);
    color: var(--white);
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: .3s;
}
.search-bar button:hover {
    background: var(--bright-red);
}


@media (min-width: 800px) and (max-width: 1024px){
    .small-panel h2{
        font-size: 1.35vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .small-panel{
        gap: 3rem;
    }
    .small-panel h2{
        font-size: 1.75vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .small-panel{
        gap: 3rem;
    }
    .small-panel h2{
        font-size: 2.2vw;
    }
    .search-bar{
        max-width: 370px;
    }
}

@media (max-width: 480px){
    .small-panel{
        gap: 3rem;
    }
    .small-panel h2{
        font-size: 2.7vw;
    }
    .search-bar{
        max-width: 260px;
    }
}

.search-icon{
    margin-left: auto;
}

.cart, .search-icon, .fa-user{
    margin-right: 1rem;
}

.fa-cart-shopping, .fa-user, .search-icon, .watchlist{
    font-size: 1.8vw;
    cursor: pointer; 
    transition: .3s;
}

.br-g-c{
    color: var(--bright-gray);
}

.br-g-c:hover{
    color: var(--white);
}

.g-c{
    color: var(--dark-gray) !important;
}

.g-c:hover{
    color: var(--dark-black);
}
  
nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    padding-inline-end: 3rem;
    box-sizing: border-box;
}
  
.nav-link {
    height: 100%;
    padding: 0 23px;
    font-size: 1.1vw;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: letter-spacing 0.3s ease, color 0.3s ease;
}
  
.nav-link:hover {
    letter-spacing: 2px;
}  

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 230px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
  padding: .3rem 0;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding-inline-end: 0 !important;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: .75rem;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f3f3f3;
}

.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 200px;
  max-height: 580px;
  overflow-y: auto;    
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(60px);
  transition: all 0.3s ease;
  z-index: 999;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding-inline-end: 0 !important;
}

.dropdown-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-menu::-webkit-scrollbar {
  width: 11px;
}

.sub-menu::-webkit-scrollbar-thumb {
  background: var(--dark-gray);
  border-radius: 10px;
}

.sub-menu::-webkit-scrollbar-thumb:hover {
  background: #4e4e4e;
}
  
.sidebar {
    position: fixed;
    top: 0;
    right: 0; 
    height: 100vh;
    width: 250px;
    background-color: rgba(168, 37, 38, 0.8);
    backdrop-filter: blur(12px); 
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2); 
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out; 
    z-index: 100; 
}

.sidebar.active {
    transform: translateX(0); 
}
  
.sidebar li {
    width: 100%;
}
  
.sidebar a {
    width: 100%;
    text-decoration: none;
    color: var(--white); 
    padding: 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}
  
.sidebar a:hover {
    background-color: rgba(168, 37, 38, 0.5); 
}
  
.sidebar svg {
    fill: var(--white); 
    margin-right: 10px;
}
  
.menu-button {
    display: none;
    cursor: pointer;
}
  
.fa-bars, .fa-xmark {
    font-size: 2.7vw;
    color: var(--white);
}

@media (min-width: 1024px) and (max-width: 1200px){
    .nav-link{
      font-size: 1.3vw;
    }
}
  
@media (max-width: 1024px) {
    .hideOnMobile {
      display: none;
    }
    .navbar{
        justify-content: space-between;
        gap: 0;
    }
    nav ul{
      padding-inline-end: 0;
      justify-content: end;
    }
    .menu-button {
      display: block; 
      margin-right: 2rem;
    }
    .nav-link:hover {
      color: var(--white);
      letter-spacing: 0px;
    }  
}

@media (min-width: 800px) and (max-width: 1024px){
    .logo img{
      width: 13vw;
    }
    .cart{
        margin-left: 0;
        margin-right: 1rem;
    }
    .search-icon{
        margin-right: .8rem;
    }
    .fa-user, .watchlist{
        margin-right: 1rem;
    }
    .fa-cart-shopping, .fa-user, .search-icon, .watchlist{
        font-size: 2.5vw;
    }
}
  
@media (min-width: 600px) and (max-width: 800px){
    .logo img{
      width: 17vw;
    }
    .fa-bars,.fa-xmark{
      font-size: 3.5vw;
    }  
    .cart{
        margin-left: 0;
        margin-right: 1rem;
    }
    .search-icon{
        margin-right: .8rem;
    }
    .fa-user, .watchlist{
        margin-right: 1rem;
    }
    .fa-cart-shopping, .fa-user, .search-icon, .watchlist{
        font-size: 3.1vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .logo img{
      width: 22vw;
    }
    .fa-bars,.fa-xmark{
      font-size: 4.5vw;
    }  
    .cart{
        margin-left: 0;
        margin-right: 1rem;
    }
    .search-icon{
        margin-right: .8rem;
    }
    .fa-user, .watchlist{
        margin-right: 1rem;
    }
    .fa-cart-shopping, .fa-user, .search-icon, .watchlist{
        font-size: 4.5vw;
    }
}

@media (max-width: 480px){
    .logo img{
      width: 27vw;
      margin: .5rem;
    }
    .fa-bars,.fa-xmark{
      font-size: 5.6vw;
    }  
    .cart{
        margin-left: 0;
        margin-right: 1rem;
    }
    .search-icon{
        margin-right: .8rem;
    }
    .fa-user, .watchlist{
        margin-right: 1rem;
    }
    .fa-cart-shopping, .fa-user, .search-icon, .watchlist{
        font-size: 5.6vw;
    }
}

.main-textbox{
    top: 10%;
    position: relative;
    margin-left: 5%;
    margin-right: 46%;
}

.main-textbox h1{
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 3.5vw;
    text-transform: uppercase;
}

.main-textbox h1 span{
    color: #ff5c5c;
}

.main-line{
    height: 4px;
    width: 10vw;
    background: var(--red);
    margin: 1rem 0;
}

.main-textbox p{
    color: var(--bright-gray);
    font-size: 1.15vw;
}

.home-btn button{
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.home-btn button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.home-btn button:hover::before {
    transform: translateX(0);
}

.home-btn button:hover{
    color: var(--dark-black); 
}

@media (min-width: 800px) and (max-width: 1024px){
    .main-textbox{
      top: 6%;
    }
    .main-textbox h1{
      font-size: 4.6vw;
    }
    .main-line{
        width: 13vw;
    }
    .main-textbox p{
        font-size: 1.4vw;
    }
    .home-btn button{
        font-size: 1.35vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .main-textbox{
      top: 5%;
      margin-left: 7%;
      margin-right: 30%;
    }
    .main-textbox h1{
      font-size: 6vw;
    }
    .main-line{
        width: 16vw;
    }
    .main-textbox p{
        font-size: 1.9vw;
    }
    .home-btn button{
        font-size: 1.7vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .main-textbox{
      top: 6%;
      margin-left: 7%;
      margin-right: 23%;
    }
    .main-textbox h1{
      font-size: 7vw;
    }
    .main-line{
        width: 21vw;
    }
    .main-textbox p{
        font-size: 2.3vw;
    }
    .home-btn button{
        font-size: 2.15vw;
    }
}

@media (max-width: 480px){
    .main-textbox{
      top: 8%;
      margin-left: 7%;
      margin-right: 14%;
    }
    .main-textbox h1{
      font-size: 8vw;
    }
    .main-line{
        width: 27vw;
    }
    .main-textbox p{
        font-size: 2.9vw;
    }
    .home-btn button{
        font-size: 2.85vw;
    }
}

.categories-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 5rem 2rem;
}

.category {
    position: relative;
    overflow: hidden;
}

.category img {
    display: block;
    height: auto;
    width: 36vw;
}

.category-textbox {
    position: absolute;
    top: 0;
    left: 9%;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.category-textbox h2{
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-size: 2.5vw;
}

.cate-line{
    height: 4px;
    width: 6vw;
    background: var(--gray);
    margin: .7rem 0;
}

.category-btn button{
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: .7rem;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.category-btn button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.category-btn button:hover::before {
    transform: translateX(0);
}

.category-btn button:hover{
    color: var(--dark-black); 
}

@media (min-width: 800px) and (max-width: 1024px){
    .categories-con{
        gap: 1rem;
    }
    .category img{
        width: 40vw;
    }
    .category h2{
        font-size: 3vw;
    }
    .cate-line{
        width: 9vw;
        margin: .4rem 0;
    }
    .category-btn button{
        font-size: 1.3vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .categories-con{
        flex-direction: column;
    }
    .category img{
        width: 65vw;
    }
    .category h2{
        font-size: 4.5vw;
    }
    .cate-line{
        width: 12vw;
    }
    .category-btn button{
        font-size: 1.7vw;
    }
}

@media (min-width: 500px) and (max-width: 600px){
    .categories-con{
        flex-direction: column;
    }
    .category img{
        width: 71vw;
    }
    .category h2{
        font-size: 5.5vw;
    }
    .cate-line{
        width: 16vw;
    }
    .category-btn button{
        font-size: 2.1vw;
    }
}

@media (max-width: 500px){
    .categories-con{
        flex-direction: column;
    }
    .category-textbox{
        left: 7.5%;
    }
    .category img{
        width: 76vw;
    }
    .category h2{
        font-size: 6vw;
    }
    .cate-line{
        width: 18vw;
        margin: .3rem 0;
    }
    .category-btn button{
        font-size: 2.4vw;
        padding: .8rem 1.4rem;
    }
}

.combat-head h1{
    text-align: center;
    color: var(--dark-black);
    font-size: 3vw;
    text-transform: uppercase;
    padding: 1rem 0;
}

.pr-t{
    padding-top: 5rem;
}

.combat-con{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 3rem 1.3rem;
    padding: 5rem 2rem;
}

.products-sep-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    gap: 3.3rem 1.5rem;
    margin: 3rem 3%;
    padding-bottom: 5rem;
}

.product{
    cursor: pointer;
    flex-basis: 21%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.product-hid{
    display: none;
}

.product:hover h2 a{
    color: var(--dark-red);
}

.product-pic img{
    display: block;
    height: auto;
    width: 20vw;
}

.product-info{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.product-info h2{
    font-size: 1.6vw;
}

.product-info h2 a{
    text-decoration: none;
    color: var(--dark-black);
    transition: .3s;
}

.product-info p{
    color: var(--dark-gray);
    font-size: 1.2vw;
    font-weight: 700;
}

.cart-btn button{
    background: transparent;
    border: 2px solid var(--dark-red);
    color: var(--dark-red);
    padding: .8rem 1.6rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: .7rem;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.cart-btn button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(188, 24, 38);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.cart-btn button:hover::before {
    transform: translateX(0);
}

.cart-btn button:hover{
    color: var(--white); 
}

.cart {
    position: relative;
    cursor: pointer;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

#cart-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

#cart-panel{
    transform: translateX(100%);
    transition: transform 0.4s ease;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    padding: 20px;
    z-index: 9999;
    overflow-y: auto;
}

.cart-h{
    color: var(--dark-black);
    font-size: 2vw;
}

.cart-line{
    height: 1.5px;
    width: 100%;
    background: var(--gray);
    margin: 1rem 0;
}

.checkout-btn{
    background: transparent;
    border: 2px solid var(--dark-red);
    color: var(--dark-red);
    padding: .8rem 1.6rem;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 1vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 1.2rem;
    margin-bottom: 2rem;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.checkout-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(188, 24, 38);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.checkout-btn:hover::before {
    transform: translateX(0);
}

.checkout-btn:hover{
    color: var(--white); 
}

.shop-btn{
    background: transparent;
    border: 2px solid var(--dark-red);
    color: var(--dark-red);
    padding: .8rem 1.6rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 1.2rem;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.shop-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(188, 24, 38);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.shop-btn:hover::before {
    transform: translateX(0);
}

.shop-btn:hover{
    color: var(--white); 
}

@media (min-width: 800px) and (max-width: 1024px){
    .combat-head h1{
        font-size: 3.6vw;
    }
    .products-sep-container{
        gap: 3.3rem 1.4rem;
        margin: 3rem 5%;
    }
    .product-pic img{
        width: 24vw;
    }
    .product-hid{
        display: block;
    }
    .product-info h2{
        font-size: 2vw;
    }
    .product-info p{
        font-size: 1.6vw;
    }
    .cart-btn button{
        font-size: 1.3vw;
    }
    .cart-h{
        font-size: 3vw;
    }
    .checkout-btn{
        font-size: 1.3vw;
    }
    .shop-btn{
        font-size: 1.3vw;
    }
}

@media (min-width: 650px) and (max-width: 800px){
    .combat-head h1{
        font-size: 4.3vw;
    }
    .products-sep-container{
        gap: 3.3rem 1.4rem;
        margin: 3rem 5%;
    }
    .product-pic img{
        width: 25vw;
    }
    .product-info h2{
        font-size: 2.4vw;
    }
    .product-info p{
        font-size: 2vw;
    }
    .cart-btn button{
        font-size: 1.6vw;
    }
    .cart-h{
        font-size: 4.2vw;
    }
    .checkout-btn{
        font-size: 1.8vw;
    }
    .shop-btn{
        font-size: 1.8vw;
    }
    .product-hid{
        display: block;
    }
}

@media (min-width: 480px) and (max-width: 650px){
    .combat-head h1{
        font-size: 5vw;
    }
    .combat-con{
        gap: 2.5rem 1.8rem;
    }
    .products-sep-container{
        gap: 3.3rem 1.4rem;
        margin: 3rem 6%;
    }
    .product-pic img{
        width: 35vw;
    }
    .product-info h2{
        font-size: 2.9vw;
    }
    .product-info p{
        font-size: 2.6vw;
    }
    .cart-btn button{
        font-size: 1.9vw;
    }
    .cart-h{
        font-size: 5.1vw;
    }
    .checkout-btn{
        font-size: 2.2vw;
    }
    .shop-btn{
        font-size: 2.2vw;
    }
}

@media (max-width: 480px){
    .combat-head h1{
        font-size: 6vw;
        padding: 1rem 5%;
    }
    .combat-con{
        gap: 2.5rem 1rem;
        flex-direction: column;
        padding: 5rem 21%;
    }
    .products-sep-container{
        gap: 3.3rem;
        margin: 3rem 13%;
        flex-direction: column;
        align-items: center;
    }
    .product-pic img{
        width: 55vw;
    }
    .product-info h2{
        font-size: 4vw;
    }
    .product-info p{
        font-size: 3vw;
    }
    .cart-btn button{
        font-size: 2.4vw;
    }
    #cart-panel{
        width: 69vw;
    }
    .cart-h{
        font-size: 6.5vw;
    }
    .checkout-btn{
        font-size: 2.9vw;
    }
    .shop-btn{
        font-size: 2.9vw;
    }
}

.combat-sec{
    background-image: url(black-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.combat-next-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: 5rem 5% 0 5%;
    gap: 4rem;
}

.cricket-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: 5rem 5%;
    gap: 4rem;
    flex-direction: row-reverse;
}

.combat-pic img{
    display: block;
    height: auto;
    width: 34vw;
}

.cricket-pic img{
    display: block;
    height: auto;
    width: 27vw;
}

.combat-textbox{
    flex-basis: 34%;
}

.combat-textbox h2{
    color: var(--bright-red);
    text-transform: uppercase;
    font-size: 1.5vw;
}

.combat-textbox h1{
    color: var(--white);
    font-size: 3.2vw;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.c-line{
    height: 4px;
    width: 10vw;
    background: var(--bright-red);
    margin: 1rem 0;
}

.combat-textbox p{
    color: var(--light-gray);
    font-size: 1.1vw;
}

.combat-btn button{
    background: transparent;
    border: 2px solid var(--bright-red);
    color: var(--white);
    padding: 1rem 2.8rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 1.4rem;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.combat-btn button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(188, 24, 38);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.combat-btn button:hover::before {
    transform: translateX(0);
}

.combat-btn button:hover{
    color: var(--white); 
}

@media (min-width: 800px) and (max-width: 1024px){
    .combat-next-con{
        padding: 5rem 3% 0;
        gap: 3rem;
    }
    .cricket-con{
        padding: 5rem 3%;
        gap: 3rem;
    }
    .combat-pic img{
        width: 40vw;
    }
    .cricket-pic img{
        width: 33vw;
    }
    .combat-textbox{
        flex-basis: 36%;
    }
    .combat-textbox h2{
        font-size: 1.8vw;
    }
    .combat-textbox h1{
        font-size: 4vw;
    }
    .c-line{
        width: 13vw;
        margin: .7rem 0;
    }
    .combat-textbox p{
        font-size: 1.3vw;
    }
    .combat-btn button{
        margin-top: 1rem;
        font-size: 1.3vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .combat-next-con{
        padding: 5rem 3% 0;
        gap: 4%;
    }
    .cricket-con{
        padding: 5rem 3%;
        gap: 4%;
    }
    .combat-pic img{
        width: 45vw;
    }
    .cricket-pic img{
        width: 38vw;
    }
    .combat-textbox{
        flex-basis: 39%;
    }
    .combat-textbox h2{
        font-size: 2.2vw;
    }
    .combat-textbox h1{
        font-size: 4.7vw;
    }
    .c-line{
        width: 16vw;
        margin: .7rem 0;
    }
    .combat-textbox p{
        font-size: 1.6vw;
    }
    .combat-btn button{
        margin-top: .8rem;
        font-size: 1.6vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .combat-next-con{
        padding: 5rem 3%;
        gap: 3rem;
        flex-direction: column;
        align-items: center;
    }
    .cricket-con{
        padding: 5rem 3%;
        gap: 3rem;
        flex-direction: column;
        align-items: center;
    }
    .combat-pic img{
        width: 71vw;
    }
    .cricket-pic img{
        width: 66vw;
    }
    .combat-textbox{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 8%;
    }
    .combat-textbox h2{
        font-size: 2.8vw;
    }
    .combat-textbox h1{
        font-size: 5.7vw;
    }
    .c-line{
        width: 19vw;
        margin: .7rem 0;
    }
    .combat-textbox p{
        font-size: 2.2vw;
    }
    .combat-btn button{
        font-size: 2vw;
    }
}

@media (max-width: 480px){
    .combat-next-con{
        padding: 5rem 3%;
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    .cricket-con{
        padding: 5rem 3%;
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    .combat-pic img{
        width: 80vw;
    }
    .cricket-pic img{
        width: 73vw;
    }
    .combat-textbox{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 4%;
    }
    .combat-textbox h2{
        font-size: 3.4vw;
    }
    .combat-textbox h1{
        font-size: 6.7vw;
    }
    .c-line{
        width: 25vw;
        margin: .7rem 0;
    }
    .combat-textbox p{
        font-size: 2.8vw;
    }
    .combat-btn button{
        font-size: 2.7vw;
    }
}

.qualities-con{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3%;
    padding: 5rem 1rem;
}

.quality{
    flex-basis: 22%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7%;
}

.quality-icon img{
    display: block;
    height: auto;
    width: 5.5vw;
}

.small-head{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 7%;
}

.small-head p{
    color: var(--bright-red);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.2vw;
}

.small-line{
    height: 3px;
    width: 8vw;
    background: var(--bright-red);
}

.quality-text h2{
    color: var(--dark-black);
    font-size: 1.5vw;
    margin-top: .5rem;
}

.gray-p{
    color: var(--dark-gray);
    font-size: 1.1vw;
    margin-top: .3rem;
}

@media (min-width: 800px) and (max-width: 1024px){
    .qualities-con{
        gap: 4rem;
        flex-wrap: wrap;
    }
    .quality{
        flex-basis: 38%;
    }
    .quality-icon img{
        width: 8vw;
    }
    .small-head p{
        font-size: 1.6vw;
    }
    .small-line{
        width: 7vw;
    }
    .quality-text h2{
        font-size: 1.9vw;
    }
    .gray-p{
        font-size: 1.3vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .qualities-con{
        gap: 4rem;
        flex-wrap: wrap;
    }
    .quality{
        flex-basis: 38%;
    }
    .quality-icon img{
        width: 9vw;
    }
    .small-head p{
        font-size: 1.9vw;
    }
    .small-line{
        width: 7vw;
    }
    .quality-text h2{
        font-size: 2.3vw;
    }
    .gray-p{
        font-size: 1.6vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .qualities-con{
        flex-direction: column;
        gap: 3rem;
        padding: 5rem 12%;
    }
    .quality-icon img{
        width: 14vw;
    }
    .small-head p{
        font-size: 2.5vw;
    }
    .small-line{
        width: 12vw;
    }
    .quality-text h2{
        font-size: 3.3vw;
    }
    .gray-p{
        font-size: 2.3vw;
    }
}

@media (max-width: 480px){
    .qualities-con{
        flex-direction: column;
        gap: 3rem;
        padding: 5rem 10%;
    }
    .quality-icon img{
        width: 17vw;
    }
    .small-head p{
        font-size: 3vw;
    }
    .small-line{
        width: 17vw;
    }
    .quality-text h2{
        font-size: 4.3vw;
    }
    .gray-p{
        font-size: 2.8vw;
    }
}

.footer{
    background: var(--bright-red);
}

.footer-links{
    padding-top: 7rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 5rem;
}

.footer-link{
    flex-basis: 20%;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
}

.footer-ul-h1{
    color: var(--white);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.footer-link ul{
    list-style-type: none;
}

.footer-link ul li a{
    text-decoration: none;
    color: var(--bright-gray);
    transition: 0.5s;
}

.footer-link ul li .foot-hover:hover{
    color: var(--white);
}

.footer-link ul li{
    font-size: .75rem;
    margin-top: .75rem;
}

.footer-link ul li:hover{
    color: var(--white);
}

.fa-chevron-right{
    color: var(--bright-gray);
    margin-right: 1rem;
}

.foot-mar{
    margin-right: 1rem;
    color: var(--bright-gray);
}

.fa-brands{
    font-size: 1.1rem;
}

.fl-footer{
    display: flex;
    justify-content: start;
    align-items: center;
}

.footer-panel{
    background: var(--dark-black);
    color: var(--white);
    padding:  1.8rem 0;
    font-weight: 500;
    font-size: .85rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-panel p{
    margin: 0 1rem;
}

.footer-panel p a{
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
}

@media (min-width: 600px) and (max-width: 1024px){
    .footer-text{
        margin-left: 2rem;
    }
    .footer-h1{
        margin-left: 2rem;
        font-size: 2rem;
    }
    .footer-link{
        flex-basis: 40%;
        margin-bottom: 2rem;
        margin-right: 1rem;
    }
    .footer-ul-h1{
        font-size: 1.1rem;
    }
}


@media (max-width: 600px){
    .footer-text{
        margin-left: 0;
    }
    .footer-text .small{
        margin-left: 1.5rem;
    }
    .footer-h1{
        margin-left: 2rem;
        font-size: 1.5rem;
    }
    .footer-link{
        flex-basis: 80%;
        margin-bottom: 2rem;
        margin-right: 1rem;
    }
    .footer-ul-h1{
        font-size: 1rem;
    }
    .footer-link ul li{
        font-size: .65rem;
    }
    .footer-link p{
        font-size: .65rem;
    }
    .footer-panel{
        padding: 1.4rem 0;
        font-size: .65rem;
    }
}

.socials {
    display: flex;
    align-items: center;
    margin: 1rem 0 0 0.45rem;
}

.social {
    border: 1px solid var(--bright-gray);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex; 
    justify-content: center;
    align-items: center;
    margin-right: 1rem; 
}

.social a {
    text-decoration: none;
}

.social a img{
    display: block;
    height: auto;
    width: 1.7vw;
}

@media (min-width: 800px) and (max-width: 1024px){
    .social a img{
        width: 2.4vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .social a img{
        width: 3.2vw;
    }
}

@media (min-width: 450px) and (max-width: 600px){
    .social a img{
        width: 4.5vw;
    }
}

@media (max-width: 600px){
    .social a img{
        width: 5.5vw;
    }
}

.hidden {
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.from-left {
    transform: translateX(-150px);
}

.from-left.show {
    transform: translateX(0);
    opacity: 1;
}

.from-right {
    transform: translateX(150px);
}

.from-right.show {
    transform: translateX(0);
    opacity: 1;
}

.from-bottom {
    transform: translateY(150px);
}

.from-bottom.show {
    transform: translateY(0);
    opacity: 1;
}

.from-top {
    transform: translateY(-150px);
}

.from-top.show {
    transform: translateY(0);
    opacity: 1;
}

.product-sep-con{
    margin: 4rem 3rem;
}

.product-sep-head{
    position: relative;
    left: 12%;
}

.product-sep-head p{
    color: var(--gray);
    font-size: 1.3vw;
}

.product-sep-head p a{
    text-decoration: none;
    color: var(--dark-black);
}

.product-sep-first-con{
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
}

.image-gallery{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    flex-basis: 20%;
}

.product-main-image img{
    display: block;
    height: auto;
    width: 30vw;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1), 
                0px -5px 15px rgba(0, 0, 0, 0.1), 
                5px 5px 15px rgba(0, 0, 0, 0.1);
}

.product-small-pics{
    display: flex;
    justify-content: start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: .8rem;
}

.product-small-pic{
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1), 
                0px -5px 15px rgba(0, 0, 0, 0.1), 
                5px 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.product-small-pic img{
    display: block;
    height: auto;
    width: 5vw;
    opacity: 0.7;
    transition: 0.3s;
}

.product-small-pic img:hover {
    opacity: 1;
}

.product-sep-first-textbox{
    flex-basis: 43%;
}

.text-pro-inn{
    margin: 1rem 0 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
  
.text-pro-inn h1{
    color: var(--dark-black);
    font-size: 2.6vw;
}

.sku{
    color: var(--dark-red);
    font-size: 1.1vw;
}

.price{
    color: var(--dark-gray);
    font-size: 1.5vw;
    margin-top: .65rem;
}

.ul-head{
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.3vw;
    margin-top: 1.2rem;
}

.text-pro-inn ul{
    color: var(--dark-gray);
    margin-top: .45rem;
}

.text-pro-inn ul li{
    font-size: 1.1vw;
}

.sep-pro-btn{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 65%;
    gap: 1rem;
}

.buy-now-btn{
    background: var(--bright-red);
    border: 2px solid var(--bright-red);
    color: var(--white);
    padding: 1rem 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1vw;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    transition: color 0.3s;
}

.buy-now-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.buy-now-btn:hover::before {
    transform: translateX(0);
}

.buy-now-btn:hover{
    color: var(--bright-red); 
}

.add-to-cart-btn{
    background: transparent;
    border: 2px solid var(--bright-red);
    color: var(--bright-red);
    padding: 1rem 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1vw;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    transition: color 0.3s;
}

.add-to-cart-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(188, 24, 38);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.add-to-cart-btn:hover::before {
    transform: translateX(0);
}

.add-to-cart-btn:hover{
    color: var(--white); 
}

.watchlist-btn{
    background: transparent;
    border: 2px solid var(--bright-red);
    color: var(--bright-red);
    padding: 1rem 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1vw;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    transition: color 0.3s;
}

.watchlist-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(188, 24, 38);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.watchlist-btn:hover::before {
    transform: translateX(0);
}

.watchlist-btn:hover{
    color: var(--white); 
}

.modal{
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content{
  background: var(--white);
  padding: 2rem;
  margin: 10% auto;
  width: 300px;
  border-radius: .7rem;
  text-align: center;
}

@media (min-width: 900px) and (max-width: 1285px){
    .modal-content{
        margin: 15% auto;
    }
}

@media (min-width: 650px) and (max-width: 900px){
    .modal-content{
        margin: 23% auto;
    }
}

@media (min-width: 550px) and (max-width: 650px){
    .modal-content{
        margin: 31% auto;
    }
}

@media (max-width: 550px){
    .modal-content{
        margin: 39% auto;
    }
}

.modal-content h2{
    color: var(--dark-black);
    font-size: 2vw;
}

.modal-content p{
    color: var(--dark-gray);
    font-size: 1.1vw;
}

.buynowbtns{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.buynowbtns button{
    background: transparent;
    border: 2px solid var(--bright-red);
    color: var(--bright-red);
    padding: 1rem 2.8rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1vw;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    transition: color 0.3s;
}

.buynowbtns button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(188, 24, 38);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.buynowbtns button:hover::before {
    transform: translateX(0);
}

.buynowbtns button:hover{
    color: var(--white); 
}

.category-p{
    color: var(--dark-gray);
    font-size: 1.2vw;
    margin-top: 1rem;
}

.category-p a{
    color: var(--dark-gray);
    text-decoration: none;
}

.img-zoom-container {
  position: relative;
  display: inline-block;
}

.img-zoom-result {
  position: absolute;
  top: 0;
  left: 105%;
  width: 36vw;
  height: 37vw;
  border: 1px solid #ddd;
  background-repeat: no-repeat;
  background-size: 200%;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1000; 
  background-color: #fff; 
}


@media (min-width: 750px) and (max-width: 1024px){
    .product-sep-head{
        left: 10%;
    }
    .product-sep-head p{
        font-size: 1.5vw;
    }
    .product-main-image img{
        width: 33vw;
    }
    .product-small-pics{
        column-gap: .75rem;
    }
    .product-small-pic img{
        width: 6.5vw;
    }
    .product-sep-first-textbox{
        flex-basis: 47%;
    }
    .text-pro-inn{
        margin: 1rem 0 0 2rem;
    }
    .text-pro-inn h1{
        font-size: 3vw;
    }
    .sku{
        font-size: 1.3vw;
    }
    .price{
        font-size: 1.8vw;
    }
    .ul-head{
        font-size: 1.5vw;
    }
    .text-pro-inn ul li{
        font-size: 1.3vw;
    }
    .sep-pro-btn button{
        font-size: 1.3vw;
    }
    .category-p{
        font-size: 1.4vw;
    }
    .modal-content h2{
        font-size: 3vw;
    }
    .modal-content p{
        font-size: 1.4vw;
    }
    .buynowbtns button{
        font-size: 1.3vw;
    }
}

@media (min-width: 600px) and (max-width: 750px){
    .product-sep-con {
        margin: 4rem 2rem;
    }
    .product-sep-head{
        left: 5%;
    }
    .product-sep-head p{
        font-size: 1.9vw;
    }
    .product-main-image img{
        width: 36vw;
    }
    .product-small-pics{
        column-gap: .75rem;
    }
    .product-small-pic img{
        width: 7.5vw;
    }
    .product-sep-first-textbox{
        flex-basis: 47%;
    }
    .text-pro-inn{
        margin: 1rem 0 0 2rem;
    }
    .text-pro-inn h1{
        font-size: 3.6vw;
    }
    .sku{
        font-size: 1.8vw;
    }
    .price{
        font-size: 2.3vw;
    }
    .ul-head{
        font-size: 2.1vw;
    }
    .text-pro-inn ul li{
        font-size: 1.8vw;
    }
    .sep-pro-btn{
        width: 80%;
    }
    .sep-pro-btn button{
        font-size: 1.8vw;
        padding: .8rem 0.4rem;
    }
    .category-p{
        font-size: 1.8vw;
    }
    .modal-content h2{
        font-size: 4.2vw;
    }
    .modal-content p{
        font-size: 1.9vw;
    }
    .buynowbtns button{
        font-size: 1.7vw;
    }
}

@media (min-width: 450px) and (max-width: 600px){
    .product-sep-con {
        margin: 4rem 3rem;
    }
    .product-sep-first-con{
        flex-direction: column;
        align-items: center;
    }
    .product-sep-head{
        position: relative;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .product-sep-head p{
        font-size: 2.5vw;
    }
    .image-gallery{
        align-items: center;
        flex-basis: 100%;
    }
    .product-main-image img{
        width: 62vw;
    }
    .product-small-pics{
        justify-content: center;
        align-items: center;
    }
    .product-small-pic img{
        width: 12vw;
    }
    .text-pro-inn{
        margin: 3rem 0;
        align-items: center;
        text-align: center;
    }
    .text-pro-inn h1{
        font-size: 5vw;
    }
    .sku{
        font-size: 2.1vw;
    }
    .price{
        font-size: 2.9vw;
    }
    .ul-head{
        font-size: 2.7vw;
    }
    .text-pro-inn ul{
        list-style: none;
    }
    .text-pro-inn ul li{
        font-size: 2.1vw;
    }
    .sep-pro-btn{
        width: 100%;
    }
    .sep-pro-btn button{
        font-size: 2.1vw;
    }
    .category-p{
        font-size: 2.3vw;
    }
    .modal-content h2{
        font-size: 5vw;
    }
    .modal-content p{
        font-size: 2.4vw;
    }
    .buynowbtns{
        margin-top: 1rem;
    }
    .buynowbtns button{
        font-size: 2.1vw;
    }
}

@media (max-width: 450px){
    .product-sep-con{
        margin: 4rem 2rem;
    }
    .product-sep-first-con{
        flex-direction: column;
        align-items: center;
    }
    .product-sep-head{
        position: relative;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .product-sep-head p{
        font-size: 2.9vw;
    }
    .image-gallery{
        align-items: center;
        flex-basis: 100%;
    }
    .product-main-image img{
        width: 70vw;
    }
    .product-small-pics{
        justify-content: center;
        align-items: center;
    }
    .product-small-pic img{
        width: 14vw;
    }
    .text-pro-inn{
        margin: 3rem 0;
        align-items: center;
        text-align: center;
    }
    .text-pro-inn h1{
        font-size: 6vw;
        margin: 0 .50rem;
    }
    .sku{
        font-size: 2.6vw;
    }
    .price{
        font-size: 3.4vw;
    }
    .ul-head{
        font-size: 3.2vw;
    }
    .text-pro-inn ul{
        list-style: none;
    }
    .text-pro-inn ul li{
        font-size: 2.9vw;
    }
    .sep-pro-btn{
        width: 100%;
    }
    .sep-pro-btn button{
        font-size: 2.5vw;
    }
    .category-p{
        font-size: 2.8vw;
    }
    .modal-content{
        width: 61vw;
    }
    .modal-content h2{
        font-size: 6.8vw;
    }
    .modal-content p{
        font-size: 3.1vw;
    }
    .buynowbtns{
        margin-top: 1rem;
    }
    .buynowbtns button{
        font-size: 2.8vw;
        padding: 1rem 0.8rem;
    }
}
.product-sep-second-con{
    margin: 3rem 3rem;
    border-top: 1px solid var(--dark-gray);
}

.tabs{
    display: flex;
    justify-content: start;
    align-items: center;
    column-gap: 4rem;
    margin-top: 2rem;
}

.tab-button{
    background: transparent;
    border: none;
    color: var(--dark-gray);
    font-family: 'Poppins', 'sans-serif';
    font-size: 1.5vw;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease; 
}

.tab-button:hover {
    color: var(--dark-red);  
}

.tab-button::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dark-red); 
    transition: width 0.3s ease; 
}

.tab-button:hover::before {
    width: 100%;  
}

.content-section p{
    color: var(--dark-gray);
    margin-top: 2rem;
    font-size: 1.2vw;
}

@media (min-width: 600px) and (max-width: 800px){
    .product-sep-second-con{
        margin: 3rem 1rem;
    }
    .tab-button{
        font-size: 1.9vw;
    }
    .content-section p{
        font-size: 1.5vw;
    }
}

@media (min-width: 450px) and (max-width: 600px){
    .product-sep-second-con{
        margin: 3rem 0;
    }
    .tabs{
        column-gap: 2rem;
        text-align: center;
        justify-content: center;
    }
    .tab-button{
        font-size: 2.7vw;
    }
    .content-section p{
        font-size: 2.2vw;
        text-align: center;
    }
}

@media (max-width: 450px){
    .product-sep-second-con{
        margin: 3rem 0;
    }
    .tabs{
        column-gap: 1.3rem;
        text-align: center;
        justify-content: center;
    }
    .tab-button{
        font-size: 3.2vw;
    }
    .content-section p{
        font-size: 2.9vw;
        text-align: center;
    }
}

.product-third-con-head h1{
    color: var(--dark-black);
    font-size: 2.6vw;
    margin-left: 2rem;
}

.relatedproducts-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    margin-top: 2rem;
    column-gap: .50rem;
}

.relatedproduct{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-basis: 23%;
    cursor: pointer;
    transition: 0.4s;
}

.relproduct-pic{
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1), 
                0px -5px 15px rgba(0, 0, 0, 0.1), 
                5px 5px 15px rgba(0, 0, 0, 0.1);
}

.relatedproduct:nth-child(1){
    transition-delay: 200ms;
  }
  
.relatedproduct:nth-child(2){
    transition-delay: 400ms;
}
  
.relatedproduct:nth-child(3){
    transition-delay: 600ms;
}
  
.relatedproduct:nth-child(4){
    transition-delay: 800ms;
}
  
.relproduct-pic img {
    display: block;
    height: auto;
    width: 16vw;
}

.relproduct-text{
    text-align: center;
    margin: 1rem;
}

.relproduct-text h3{
    color: var(--dark-black);
    font-size: 1.4vw;
    margin-top: .5rem;
}

.relproduct-text p{
    color: var(--dark-gray);
    font-size: 1.2vw;
    margin-top: .5rem;
}

.relatedproduct:hover .relproduct-pic img {
    transform: scale(1.05); 
    transition: transform 0.3s ease-in-out, box-shadow 0.5s ease-in-out;
}

.relatedproduct:hover .relproduct-pic {
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.3),
                0px -5px 25px rgba(0, 0, 0, 0.3), 
                5px 5px 25px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease-in-out;
}

.relatedproduct:hover .relproduct-text h3 {
    color: var(--orange); 
    transition: color 0.3s ease-in-out;
}

.relatedproduct:hover .relproduct-text p {
    color: var(--dark-black);
    transition: color 0.3s ease-in-out;
}

.relproduct-pic, .relproduct-pic img, .relproduct-text h3, .relproduct-text p {
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

@media (min-width: 800px) and (max-width: 1024px){
    .relproduct-text h3{
        font-size: 1.7vw;
    }
    .relproduct-text p{
        font-size: 1.2vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .product-third-con-head h1{
        font-size: 3.9vw;
        margin-left: 1rem;
    }
    .relatedproducts-con{
        column-gap: 1.1rem;
    }
    .relproduct-pic img{
        width: 29vw;
    }
    .relproduct-text h3{
        font-size: 2.4vw;
    }
    .relproduct-text p{
        font-size: 1.9vw;
    }
    .relatedproduct:nth-child(1){
        transition-delay: 200ms;
      }
      
    .relatedproduct:nth-child(2){
        transition-delay: 400ms;
    }
      
    .relatedproduct:nth-child(3){
        transition-delay: 600ms;
    }
      
    .relatedproduct:nth-child(4){
        transition-delay: 800ms;
    }
}

@media (min-width: 450px) and (max-width: 600px){
    .product-third-con-head h1{
        font-size: 4.5vw;
        margin-left: 1rem;
        text-align: center;
    }
    .relatedproducts-con{
        column-gap: 1.1rem;
    }
    .relproduct-pic img{
        width: 42vw;
    }
    .relproduct-text h3{
        font-size: 3vw;
    }
    .relproduct-text p{
        font-size: 2.4vw;
    }
    .relatedproduct{
        flex-basis: 39%;
    }
    .relatedproduct:nth-child(1){
        transition-delay: 200ms;
      }
      
    .relatedproduct:nth-child(2){
        transition-delay: 400ms;
    }
      
    .relatedproduct:nth-child(3){
        transition-delay: 600ms;
    }
      
    .relatedproduct:nth-child(4){
        transition-delay: 800ms;
    }
}

@media (max-width: 550px){
    .product-third-con-head{
        margin-top: 2rem;
    }
}

@media (max-width: 450px){
    .product-third-con-head h1{
        font-size: 5.5vw;
        margin-left: 0;
        text-align: center;
    }
    .relatedproducts-con{
        column-gap: 1.3rem;
    }
    .relproduct-pic img{
        width: 55vw;
    }
    .relproduct-text{
        margin: .50rem;
    }
    .relproduct-text h3{
        font-size: 3.7vw;
        margin-top: .50rem;
    }
    .relproduct-text p{
        font-size: 2.8vw;
        margin-bottom: .55rem;
        margin-top: 0;
    }
    .relatedproduct{
        flex-basis: 39%;
    }
    .relatedproduct:nth-child(1){
        transition-delay: 200ms;
      }
      
    .relatedproduct:nth-child(2){
        transition-delay: 400ms;
    }
      
    .relatedproduct:nth-child(3){
        transition-delay: 600ms;
    }
      
    .relatedproduct:nth-child(4){
        transition-delay: 800ms;
    }
}

.dropdown-container {
    display: flex;
    margin: 5rem 8rem 1rem 8rem;
    justify-content: space-between;
    align-items: center;
}
  
.dropdown {
    position: relative;
}
  
.dropdown-btn {
    border: none;
    background-color: transparent;
    color: var(--dark-gray);
    cursor: pointer;
    font-family: 'Poppins', 'sans-serif';
    font-size: 1.15vw;
    transition: 0.3s;
}

.dropdown-btn:hover{
    color: var(--dark-black);
}
  
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 18vw;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 10px;
    margin-top: .50rem;
}

.price-filter label{
    margin-top: .50rem;
    font-size: 1.15vw;
    color: var(--dark-black);
}
  
.dropdown.active .dropdown-content {
    display: block;
}
  
.dropdown-content button {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1.1vw;
    font-family: 'Poppins', sans-serif;
}
  
.dropdown-content button:hover {
    background-color: #f0f0f0;
}
  
.slider-container {
    position: relative;
    width: 100%;
    height: 20px;
    margin-top: .50rem;
}
  
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 4px;
    background: black;
    z-index: 2;
}
  
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: auto;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}
  
.slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.price-filter p{
    color: var(--bright-red);
    font-size: 1.1vw;
}

@media (min-width: 800px) and (max-width: 1024px){
    .dropdown-container{
        margin: 5rem 6rem 1rem 6rem;
    }
    .dropdown-content{
        width: 21vw;
    }
    .dropdown-content button{
        padding: 8px 3px;
        font-size: 1.4vw;
    }
    .price-filter label{
        font-size: 1.4vw;
    }
    .price-filter p{
        font-size: 1.4vw;
    }
    .dropdown-btn{
        font-size: 1.5vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .dropdown-container{
        margin: 5rem 6rem 1rem 6rem;
    }
    .dropdown-content{
        width: 27vw;
    }
    .dropdown-content button{
        padding: 8px 3px;
        font-size: 1.7vw;
    }
    .price-filter label{
        font-size: 1.7vw;
    }
    .price-filter p{
        font-size: 1.7vw;
    }
    .dropdown-btn{
        font-size: 1.9vw;
    }
    input[type="range"] {
        height: 3px;
    }
      
    input[type="range"]::-webkit-slider-thumb {
        width: 9px;
        height: 9px;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .dropdown-container{
        margin: 5rem 4rem 1rem 4rem;
    }
    .dropdown-content{
        width: 30vw;
    }
    .dropdown-content button{
        padding: 8px 3px;
        font-size: 2vw;
    }
    .price-filter label{
        font-size: 2vw;
    }
    .price-filter p{
        font-size: 2vw;
    }
    .dropdown-btn{
        font-size: 2.4vw;
    }
    input[type="range"] {
        height: 3px;
    }
      
    input[type="range"]::-webkit-slider-thumb {
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 480px){
    .dropdown-container{
        margin: 5rem 12% 1rem 12%;
    }
    .dropdown-content{
        width: 30vw;
    }
    .dropdown-content button{
        padding: 8px 3px;
        font-size: 2.9vw;
    }
    .price-filter label{
        font-size: 2.9vw;
    }
    .price-filter p{
        font-size: 2.9vw;
    }
    .dropdown-btn{
        font-size: 3.2vw;
    }
    input[type="range"] {
        height: 3px;
    }
      
    input[type="range"]::-webkit-slider-thumb {
        width: 9px;
        height: 9px;
    }
}

.sep-header{
  height: 58vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.boxingequipment-page{
  background-image: url(boxingequip-bg.jpg);
}

.martialartsequipment-page{
  background-image: url(martialarts-bg.jpg);
}

.basketballequipment-page{
  background-image: url(basketball-bg.jpg);
}

.footballequipment-page{
  background-image: url(football-bg.jpg);
}

.cyclingequipment-page{
  background-image: url(cycling-bg.jpg);
}

.motorbikeequipment-page{
  background-image: url(motorbike-bg.jpg);
}

.cricketequipment-page{
  background-image: url(cricket-bg.jpg);
}

.products-page{
  background-image: url(products-bg.jpg);
}

.about-page{
  background-image: url(about-bg.jpg);
}

.page-links{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 24%;
  margin: 0 5%;
  text-align: center;
}

.page-links ul{
  display: flex;
  align-items: baseline;
  justify-content: center;
  list-style-type: none;
  color: var(--light-gray);
  margin-left: .5rem;
}

.page-links ul li a{
  text-decoration: none;
  color: var(--white);
  font-size: 1.1vw;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.page-link span{
  margin: 0 .55rem;
  font-size: 1.1vw;
}

.page-links h1{
  color: var(--white);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
  font-size: 3.2vw;
}

.page-links p{
    color: var(--white);
    font-size: 1.2vw;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

@media (min-width: 800px) and (max-width: 1024px){
  .page-links{
    top: 20%;
  }
  .page-links ul li a{
    font-size: 1.4vw;
  }
  .page-link span{
    font-size: 1.4vw;
  }
  .page-links h1{
    font-size: 4.1vw;
  }
  .page-links p{
    font-size: 1.5vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .page-links{
    top: 21%;
  }
  .page-links ul li a{
    font-size: 1.8vw;
  }
  .page-link span{
    font-size: 1.8vw;
  }
  .page-links h1{
    font-size: 5.1vw;
  }
  .page-links p{
    font-size: 1.9vw;
  }
}

@media (min-width: 480px) and (max-width: 600px){
  .page-links{
    top: 20%;
  }
  .page-links ul li a{
    font-size: 2.4vw;
  }
  .page-link span{
    font-size: 2.4vw;
  }
  .page-links h1{
    font-size: 6.5vw;
  }
  .page-links p{
    font-size: 2.5vw;
  }
}

@media (max-width: 480px){
  .page-links{
    top: 20%;
  }
  .page-links ul li a{
    font-size: 3.1vw;
  }
  .page-link span{
    font-size: 3.1vw;
  }
  .page-links h1{
    font-size: 7.6vw;
  }
  .page-links p{
    font-size: 3.1vw;
  }
}

.about-con{
    margin: 5rem 15%;
    text-align: center;
}

.about-con h2{
    color: var(--dark-black);
    font-size: 2.5vw;
}

.about-con p{
    color: var(--dark-gray);
    font-size: 1.15vw;
    margin-top: .4rem;
}

@media (min-width: 800px) and (max-width: 1024px){
    .about-con{
        margin: 5rem 12%;
    }
    .about-con h2{
        font-size: 3.6vw;
    }
    .about-con p{
        font-size: 1.35vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .about-con{
        margin: 5rem 12%;
    }
    .about-con h2{
        font-size: 4.7vw;
    }
    .about-con p{
        font-size: 1.75vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .about-con{
        margin: 5rem 10%;
    }
    .about-con h2{
        font-size: 6vw;
    }
    .about-con p{
        font-size: 2.15vw;
    }
}

@media (max-width: 480px){
    .about-con{
        margin: 5rem 10%;
    }
    .about-con h2{
        font-size: 7.2vw;
    }
    .about-con p{
        font-size: 2.85vw;
    }
}

.offices-sec{
    background: var(--bright-gray);
}

.offices-con{
    padding: 5rem 18%;
    text-align: center;
}

.offices-con h2{
    color: var(--dark-black);
    font-size: 2.5vw;
}

.offices{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem 6%;
    margin-top: 3rem;
}

.office-el{
    flex-basis: 34%;
    color: var(--dark-gray);
}

.office-el h3{
    font-size: 1.5vw;
}

.office-el p{
    font-size: 1.15vw;
    margin: .4rem;
}

@media (min-width: 800px) and (max-width: 1024px){
    .offices-con{
        padding: 5rem 12%;
    }
    .offices-con h2{
        font-size: 3.6vw;
    }
    .office-el{
        flex-basis: 36%;
    }
    .office-el h3{
        font-size: 2vw;
    }
    .office-el p{
        font-size: 1.35vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .offices-con{
        padding: 5rem 5%;
    }
    .offices-con h2{
        font-size: 4.6vw;
    }
    .office-el{
        flex-basis: 37%;
    }
    .office-el h3{
        font-size: 2.5vw;
    }
    .office-el p{
        font-size: 1.75vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .offices-con{
        padding: 5rem 5%;
    }
    .offices-con h2{
        font-size: 6vw;
    }
    .office-el{
        flex-basis: 45%;
    }
    .office-el h3{
        font-size: 3vw;
    }
    .office-el p{
        font-size: 2.15vw;
    }
}

@media (max-width: 480px){
    .offices-con{
        padding: 5rem 13%;
    }
    .offices-con h2{
        font-size: 7.2vw;
    }
    .offices{
        flex-direction: column;
        gap: 1.5rem;
    }
    .office-el h3{
        font-size: 3.85vw;
    }
    .office-el p{
        font-size: 2.85vw;
    }
}

.contact-con{
    padding: 4rem 10% 6rem 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3%;
}

.enquiry-form{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 36vw;
}

.one-s-con{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.input-wrapper{
  position: relative;
  width: 100%;
}

.enquiry-form .form-input input{
  border: 3px solid var(--gray);
  padding: .7rem 1rem;
  display: block;
  width: 100%;
  outline: none;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  margin-top: .5rem;
}

.enquiry-form .form-input textarea{
  border: 3px solid var(--gray);
  padding: .7rem 1rem;
  display: block;
  width: 100%;
  height: 8rem;
  outline: none;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  margin-top: .5rem;
}

.enquiry-form .form-input{
  position: relative;
  width: 100%;
}

.enquiry-form .form-input input:focus {
    outline: 0;
    border-color: #777;
}

.enquiry-form .form-input textarea:focus {
    outline: 0;
    border-color: #777;
}

.enquiry-form .form-input.success input{
    border: 2px solid var(--success-color);
}

.enquiry-form .form-input.error input{
    border: 2px solid var(--error-color);
}

.enquiry-form .form-input small {
    color: var(--error-color);
    position: absolute;
    bottom: 0;
    left: 0;
    visibility: hidden;
}

.enquiry-form .form-input.error small {
    visibility: visible;
}

.enquiry-form .form-input.error small{
    visibility: visible;
    color: #A52A2A;
    font-weight: 500;
}

.enquiry-form-btn button{
    background: transparent;
    border: 2px solid var(--dark-red);
    color: var(--dark-red);
    padding: .8rem 1.6rem;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 1vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: .8rem;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.enquiry-form-btn button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(188, 24, 38);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.enquiry-form-btn button:hover::before {
    transform: translateX(0);
}

.enquiry-form-btn button:hover{
    color: var(--white); 
}

.contact-textbox{
    flex-basis: 43%;
}

.contact-textbox h2{
    color: var(--dark-gray);
    font-size: 1.4vw;
}

.contact-textbox p{
    color: var(--dark-gray);
    font-size: 1.1vw;
    margin: .4rem 0 1rem 0;
}

.whatsapp-con{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4%;
}

.whatsapp-pic img{
    display: block;
    height: auto;
    width: 4vw;
}

.whatsapp-con h3{
    color: var(--dark-gray);
    font-size: 1.2vw;
}

.whatsapp-con h3 a{
    text-decoration: none;
    color: var(--dark-gray);
}

@media (min-width: 800px) and (max-width: 1024px){
  .contact-con{
    padding: 4rem 8% 6rem 8%;
  }
  .enquiry-form{
    width: 40vw;
  }
  .enquiry-form-btn button{
    font-size: 1.4vw;
  }
  .contact-textbox h2{
    font-size: 1.5vw;
  }
  .contact-textbox p{
    font-size: 1.3vw;
  }
  .whatsapp-pic img{
    width: 5vw;
  }
  .whatsapp-con h3{
    font-size: 1.35vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .contact-con{
    padding: 4rem 10% 6rem 10%;
    flex-direction: column;
    gap: 2.5rem;
  }
  .enquiry-form{
    width: 62vw;
  }
  .enquiry-form-btn button{
    font-size: 1.8vw;
  }
  .contact-textbox{
    text-align: center;
  }
  .contact-textbox h2{
    font-size: 1.9vw;
  }
  .contact-textbox p{
    font-size: 1.7vw;
  }
  .whatsapp-con{
    justify-content: center;
  }
  .whatsapp-pic img{
    width: 7vw;
  }
  .whatsapp-con h3{
    font-size: 1.75vw;
  }
}

@media (min-width: 480px) and (max-width: 600px){
  .contact-con{
    padding: 4rem 8% 6rem 8%;
    flex-direction: column;
    gap: 2.5rem;
  }
  .enquiry-form{
    width: 70vw;
  }
  .enquiry-form-btn button{
    font-size: 2.3vw;
  }
  .one-s-con{
    flex-direction: column;
  }
  .contact-textbox{
    text-align: center;
  }
  .contact-textbox h2{
    font-size: 2.4vw;
  }
  .contact-textbox p{
    font-size: 2.15vw;
  }
  .whatsapp-con{
    justify-content: center;
  }
  .whatsapp-pic img{
    width: 10vw;
  }
  .whatsapp-con h3{
    font-size: 2.2vw;
  }
}

@media (max-width: 480px){
  .contact-con{
    padding: 4rem 8% 6rem 8%;
    flex-direction: column;
    gap: 2.5rem;
  }
  .enquiry-form{
    width: 74vw;
  }
  .enquiry-form-btn button{
    font-size: 2.9vw;
  }
  .one-s-con{
    flex-direction: column;
  }
  .contact-textbox{
    text-align: center;
  }
  .contact-textbox h2{
    font-size: 3.1vw;
  }
  .contact-textbox p{
    font-size: 2.85vw;
  }
  .whatsapp-con{
    justify-content: center;
  }
  .whatsapp-pic img{
    width: 13vw;
  }
  .whatsapp-con h3{
    font-size: 2.85vw;
  }
}

.products-sep-head{
    padding: 6rem 17% 1rem 17%;
    text-align: center;
}

.products-sep-head h2{
    color: var(--dark-black);
    font-size: 2.6vw;
}

.products-sep-con{
    margin: 5rem 6%;
}

.products-swiper .swiper-pagination{
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
  background: var(--dark-red) !important;
  opacity: 1; 
}

.swiper-pagination-bullet-active {
  background: var(--dark-red) !important;  
}

@media (min-width: 800px) and (max-width: 1024px){
    .products-sep-con{
        margin: 5rem 9%;
    }
    .products-sep-head h2{
        font-size: 3.2vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .products-sep-con{
        margin: 5rem 15%;
    }
    .products-sep-head h2{
        font-size: 4.3vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .products-sep-con{
        margin: 5rem 13%;
    }
    .products-sep-head h2{
        font-size: 5.2vw;
    }
}

@media (max-width: 480px){
    .products-sep-con{
        margin: 5rem 11%;
    }
    .products-sep-head{
        padding: 6rem 10% 1rem 10%;
    }
    .products-sep-head h2{
        font-size: 6.2vw;
    }
}

.signup-sec{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.signup-con{
    border: 1px solid var(--dark-gray);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signup-head{
    text-align: center;
}

.signup-head h1{
    color: var(--dark-black);
    font-size: 2.6vw;
}

.signup-head p{
    color: #545454;
    font-size: 1.1vw;
    margin-top: .4rem;
}

.signup-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.3rem;
    width: 23vw;
    margin-top: 2rem;
}

.signup-form input{
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--dark-gray);
    padding: .7rem 0;
    font-family: 'Poppins', sans-serif;
    outline: 0;
}

.signup-form input:focus{
    border: 0;
    outline: 0;
    border-bottom: 2px solid var(--dark-gray);
}

.signupform-btn{
    width: 100%;
}

    .signupform-btn button{
    background: transparent;
    border: 2px solid red;
    color: red;
    padding: .8rem 2rem;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: .7rem;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.signupform-btn button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 0, 0);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.signupform-btn button:hover::before {
    transform: translateX(0);
}

.signupform-btn button:hover{
    color: white; 
}

.signin-text{
  color: #545454;
  font-size: 1.1vw;
  margin-top: 1.5rem;
}

.signin-text a{
  color: red;
}

.message-box p{
    color: #545454;
    font-size: 1.1vw;
    margin-bottom: 1rem;
    text-align: center;
}

.message-box p a{
    color: red;
}

@media (min-width: 800px) and (max-width: 1024px){
    .message-box p{
        font-size: 1.4vw;
    }
    .signup-head h1{
        font-size: 4vw;
    }
    .signup-head p{
        font-size: 1.4vw;
    }
    .signup-form{
        width: 28vw;
    }
    .signin-text{
        font-size: 1.4vw;
    }
    .signupform-btn button{
        font-size: 1.4vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .message-box p{
        font-size: 1.9vw;
    }
    .signup-head h1{
        font-size: 5.3vw;
    }
    .signup-head p{
        font-size: 1.9vw;
    }
    .signup-form{
        width: 37vw;
    }
    .signin-text{
        font-size: 1.9vw;
    }
    .signupform-btn button{
        font-size: 1.8vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .signup-sec{
        padding: 0 2rem;
    }
    .message-box p{
        font-size: 2.5vw;
    }
    .signup-head h1{
        font-size: 6.5vw;
    }
    .signup-head p{
        font-size: 2.5vw;
    }
    .signup-form{
        width: 45vw;
    }
    .signin-text{
        font-size: 2.5vw;
    }
    .signupform-btn button{
        font-size: 2.4vw;
    }
}

@media (max-width: 480px){
    .signup-sec{
        padding: 0 2rem;
    }
    .message-box p{
        font-size: 3vw;
    }
    .signup-head h1{
        font-size: 7.8vw;
    }
    .signup-head p{
        font-size: 3vw;
    }
    .signup-form{
        width: 51vw;
    }
    .signin-text{
        font-size: 3vw;
    }
    .signupform-btn button{
        font-size: 2.9vw;
    }
}

.account-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem;
    border-bottom: 1px solid #545454;
    padding-bottom: 1rem;
}

.account-head h2{ 
    color: #000000;
    font-size: 2.6vw;
}

.account-head a{ 
    color: var(--dark-red);
    font-size: 1.3vw
}

.account-sec-d{
    margin: 0 5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .5rem;
}

.account-sec-d h3{
    color: var(--dark-black);
    font-size: 1.6vw;
}

.account-sec-d p{
    color: var(--dark-black);
    font-size: 1.1vw;
}

.profile-input{ 
    padding: 8px; 
    width: 100%; 
    margin-bottom: 10px; 
}

.profile-btn button{
    background: transparent;
    border: 2px solid var(--dark-red);
    color: var(--dark-red);
    padding: .8rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: .7rem;
    margin-bottom: 2rem;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.profile-btn button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(188, 24, 38);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.profile-btn button:hover::before {
    transform: translateX(0);
}

.profile-btn button:hover{
    color: var(--white); 
}

@media (min-width: 800px) and (max-width: 1024px){
    .profile-btn button{
        font-size: 1.4vw;
    }
    .account-head h2{
        font-size: 3.6vw;
    }
    .account-head a{
        font-size: 1.6vw;
    }
    .account-sec-d h3{
        font-size: 2.6vw;
    }
    .account-sec-d p{
        font-size: 1.4vw;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .profile-btn button{
        font-size: 1.8vw;
    }
    .account-head h2{
        font-size: 4.8vw;
    }
    .account-head a{
        font-size: 2.3vw;
    }
    .account-sec-d h3{
        font-size: 3.3vw;
    }
    .account-sec-d p{
        font-size: 1.9vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .profile-btn button{
        font-size: 2.4vw;
    }
    .account-head{
        margin: 3rem;
    }
    .account-head h2{
        font-size: 6vw;
    }
    .account-head a{
        font-size: 3vw;
    }
    .account-sec-d{
        margin: 0 4rem;
    }
    .account-sec-d h3{
        font-size: 4.1vw;
    }
    .account-sec-d p{
        font-size: 2.5vw;
    }
}

@media (max-width: 480px){
    .profile-btn button{
        font-size: 2.9vw;
    }
    .account-head{
        margin: 2rem;
    }
    .account-head h2{
        font-size: 7.4vw;
    }
    .account-head a{
        font-size: 3.7vw;
    }
    .account-sec-d{
        margin: 0 11%;
    }
    .account-sec-d h3{
        font-size: 4.9vw;
    }
    .account-sec-d p{
        font-size: 3vw;
    }
}

.watchlist-head h1{
    color: var(--dark-black);
    font-size: 2.5vw;
    margin: 3rem 0 0 7%;
}

.watchlist-container{
    margin: 3rem 7%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    flex-direction: column;
}

.watchlist-item{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    border-bottom: 1px solid var(--dark-gray);
    padding: 2rem 0;
    width: 100%;
}

.watchlist-item img{
    display: block;
    height: auto;
    width: 13vw;
}

.watchlist-text h3{
    color: var(--dark-black);
    font-size: 1.9vw;
}

.watchlist-text p{
    color: var(--dark-gray);
    font-size: 1.3vw;
}

.watchlist-text small{
    color: var(--dark-red);
    font-size: 1vw;
}

.watchlist-rem-btn{
    margin-left: auto;
}

.watchlist-rem-btn button{
    background: transparent;
    border: 2px solid var(--dark-red);
    color: var(--dark-red);
    padding: .8rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1vw;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.watchlist-rem-btn button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(188, 24, 38);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.watchlist-rem-btn button:hover::before {
    transform: translateX(0);
}

.watchlist-rem-btn button:hover{
    color: var(--white); 
}

.else-p{
    color: var(--dark-gray);
    font-size: 1.1vw;
}

@media (min-width: 800px) and (max-width: 1024px){
    .watchlist-head h1{
        font-size: 3.4vw;
    }
    .watchlist-container{
        margin: 3rem 5%;
    }
    .watchlist-item img{
        width: 16vw;
    }
    .watchlist-text h3{
        font-size: 2.4vw;
    }
    .watchlist-text p{
        font-size: 1.7vw;
    }
    .watchlist-text small{
        font-size: 1.3vw;
    }
    .watchlist-rem-btn button{
        font-size: 1.35vw;
    }
    .else-p{
        font-size: 1.5vw;
        margin: 0 3%;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .watchlist-head h1{
        font-size: 4.3vw;
    }
    .watchlist-container{
        margin: 2rem 5%;
    }
    .watchlist-item img{
        width: 19vw;
    }
    .watchlist-text h3{
        font-size: 3.1vw;
    }
    .watchlist-text p{
        font-size: 2.1vw;
    }
    .watchlist-text small{
        font-size: 1.7vw;
    }
    .watchlist-rem-btn button{
        font-size: 1.7vw;
    }
    .else-p{
        font-size: 2vw;
    }
}

@media (min-width: 480px) and (max-width: 600px){
    .watchlist-head h1{
        font-size: 5.3vw;
    }
    .watchlist-container{
        margin: 2rem 4%;
    }
    .watchlist-item{
        gap: 7%;
    }
    .watchlist-item img{
        width: 21vw;
    }
    .watchlist-text h3{
        font-size: 3.7vw;
    }
    .watchlist-text p{
        font-size: 2.7vw;
    }
    .watchlist-text small{
        font-size: 2vw;
    }
    .watchlist-rem-btn button{
        font-size: 2.1vw;
    }
    .else-p{
        font-size: 2.4vw;
    }
}

@media (max-width: 480px){
    .watchlist-head h1{
        font-size: 6.3vw;
    }
    .watchlist-container{
        margin: 2rem 2%;
    }
    .watchlist-item{
        gap: 7%;
    }
    .watchlist-item img{
        width: 22vw;
    }
    .watchlist-text h3{
        font-size: 4.2vw;
    }
    .watchlist-text p{
        font-size: 3.1vw;
    }
    .watchlist-text small{
        font-size: 2.5vw;
    }
    .watchlist-rem-btn button{
        font-size: 2.5vw;
        padding: .8rem 1rem;
    }
    .else-p{
        font-size: 3vw;
    }
}