/*=============== HEADER & NAV ===============*/
.header{
    position:fixed;
    width: 100%;
    top:0;
    left:0;
    background-color:var(--red);
    z-index:var(--z-fixed);
    transition:box-shadow .4s;
}

.nav{
    position: relative;
    height:var(--header-height);
    display:flex;
    align-items:center;
    justify-content:space-around;
    flex-wrap: wrap;
}

.nav__logo img{
    width:124px;
}

.nav__close,
.nav__toggle{
    display:flex;
    font-size:1.5rem;
    cursor: pointer;
    color:var(--white);
}
/* Navigation for mobile devices */
@media screen and (max-width:1023px){
    .nav__menu{
        position:fixed;
        left:-100%;
        top:0;
        background-color:var(--red);
        width:100%;
        height:100%;
        padding:7rem 1.5rem 2.5rem 4rem;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
        transition: left .4s;
    }
}

.nav__list{
    display:flex;
    flex-direction:column;
    row-gap:3rem;
    
}

.nav__link{
    color:var(--white);
    font-size:var(--h2-font-size);
    font-weight:var(--font-semi-bold);
    text-decoration:none;
}

.nav__link:hover{
    text-decoration: underline;
}

#active{
    color:#fdf58e;  
}
.nav__close{
    position:absolute;
    top: 1.15rem;
    right:1.5rem;
    color:var(--white);
}

.nav__social{
    display:flex;
    align-self:flex-end;
    column-gap:.5rem;
}
.nav__social-link{
    font-size:1.5rem;
    color:var(--white);
}
/* Show menu */
    .show-menu{
        left:0;
    }
/* Background header */
.bg-header{
    box-shadow: 0 2px 16px hsla(0, 0%, 0%, .1);
}

/*=============== HOME ===============*/

.home__container,
.home__data,
.home__article,
.home__images,
.home__footer{
    display: grid;
}
 
.home__container{
    padding-block: 7.5rem 2.5rem;
    row-gap: 1.5rem;
    background-color:var(--black);
    color:var(--white);
    height:auto;
}

.home__data{
    text-align:center;
}

.home__subtitle{
    font-size: var(--small-font-size);
    font-family:'insoles';
    color:#fdf58e;
}

.home__titles{
    margin-block: .5rem 2rem;
}

.home__title{
    font-size: var(--biggest-font-size);
    transform: translateY(10rem);
    opacity: 0;
    transition: transform .3s .2s, opacity .3s;
}

.home__button,
.home__social,
.home__controls,
.home__navigation{
    display:flex;
}

.home__button{
    justify-self: center;
    align-items: center;
    column-gap: .5rem;
    font-weight:var(--font-semi-bold);
    background-color:var(--red);
    padding:12px 30px;
    color:var(--white);
}

.home__button i{
    font-weight: initial;
    font-size: 1.25rem;
    transition: transform .4s;
}

.home__button:hover i{
    transform: translateX(.5rem);
}

.home__article{
    width: 270px;
    place-items:center;
    padding-block: 1rem;
}

.home__card{
    position: relative;
}

.home__circle{
    width: 270px;
    height: 270px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .1s ease-out;
    background-color:#fdf58e;
}

/* .home__circle-1{
    background-color:var(--white);
}
.home__circle-2{
    background-color:var(--white);
}
.home__circle-3{
    background-color:var(--white);
} */

.home__img-1,
.home__img-2{
    position: absolute;
    width: 200px;
    filter: drop-shadow(0 20px 12px hsla(0, 0%, 0%, .4));
    transition: transform .7s .1s cubic-bezier(.2, .9, .3, 1.3), opacity .3s;
}

.home__img-1{
    bottom:7rem;
    left: -1.5rem;
    transform: translate(-5rem) rotate(60deg);
    opacity: 0;
}

.home__img-2{
    bottom: 3rem;
    right: -1.5rem;
    transform: translate(-5rem) rotate(60deg);
    opacity: 0;
}

.home__footer{
    row-gap: 1rem;
}

.home__social{
    justify-content: center;
    column-gap: .5rem;
}

.home__social-link{
    color:var(--white);
    font-size: 1.5rem;
}

.home__social-link:hover{
    color:#fdf58e;
}

.home__controls{
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
}
/* swiper class */
.swiper{
    overflow-x:hidden;
    margin-inline: initial;
    width: 100%;
    max-width: 100vw;
}

.swiper-button-prev::after,
.swiper-button-next::after{
    content: '';
}

.swiper-pagination{
    position: initial;
    font-weight: var(--font-semi-bold);
}

.swiper-button-prev,
.swiper-button-next{
    position: initial;
    width:initial;
    height:initial;
    font-size: 1.25rem;
    padding: 3px 20px;
}

.swiper-button-prev{
    background-color: var(--red);
    color:var(--white);
}

.swiper-button-next{
    background-color:var(--white);
    color:var(--black);
}
/* Swiper animation */

.swiper-slide-active .home__title{
    transform: translateY(0);
    opacity: 1;
}

.swiper-slide-active .home__circle{
    opacity: 1;
}

.swiper-slide-active .home__img-1{
    transform: translateX(0) rotate(15deg);
    opacity: 1;
}

.swiper-slide-active .home__img-2{
    transform: translateX(0) rotate(-30deg);
    opacity: 1;
}
/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
    width:.5rem;
    background-color:var(--white);
}

::-webkit-scrollbar-thumb{
    width:6rem;
    background-color:var(--red);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width:330px) {
    /* .container{
        margin-inline: 1rem;
           
    } */
    
    .home__title{
        font-size: 1.8rem;
    }
    
    .home__circle{
        width:220px;
        height:220px;
    }
    
    .home__img-1,
    .home__img-2{
        width:160px;
    }
    
    .home__img-1{
        bottom: 6rem;
    }
}
/* For medium devices */
@media screen and (min-width: 540px) {

    .home__footer{
        margin-inline: 1.5rem;
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
    }
    
    .home__controls{
        flex-direction: row;
        column-gap: 2rem;
    }

    .home__navigation{
        order: -1;
        align-self: flex-end;
    }
}

/* For large devices */

@media screen and (min-width: 1023px) {
    .nav{
        height: calc(var(--header-height) + 2rem);
    }

    .nav__toggle,
    .nav__close{
        display: none;
    }

    .nav__link{
            font-size: var(--normal-font-size);
            color:var(--white);
    }

    .nav__social{
        column-gap: 1rem;
        display:none;
    }

    .nav__social-link{
        color:var(--white);
    }

    .nav__menu{
        display: flex;
        column-gap: 3rem;
        align-items: center;
    }

    .nav__list{
        flex-direction: row;
        column-gap: 3rem;
    }
}

@media screen and (min-width:1150px) {
    /* .container{
        margin-inline: auto;
    } */

    .home__container{
        grid-template-columns: 450px 600px;
        grid-template-rows: 470px;
        align-items: center;
        justify-content: center;
        column-gap: 2rem;
        row-gap: 6rem;
        padding-top: 12rem;
    }

    .home__footer{
        grid-column: 1/3;
        margin-inline: 0;
    }

    .home__data{
        text-align:initial;
    }

    .home__subtitle{
        font-size: var(--normal-font-size);
    }

    .home__title{
        margin-bottom: 3rem;
    }

    .home__button{
        justify-self:flex-start;
        z-index: 2;;
    }

    .home__images{
        position: absolute;
        top: 9rem;
    }

    .home__card{
        transform: translateX(15rem);
    }

    .home__circle{
        width: 570px;
        height: 570px;
    }

    .home__img-1,
    .home__img-2{
        width: 420px;
    }

    .home__img-1{
        bottom: 14rem;
        left: 3rem;
        transform: translateX(-25rem) rotate(60deg);
    }

    .home__img-2{
        bottom: 6rem;
        right: -3rem;
        transform: translateX(25rem) rotate(60deg);
    }
}

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

    /* product section start */
    .product-box {
        border: none;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .product-box:hover {
        transform: scale(1.05);
    }
    .badge-new {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: black;
        color: white;
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    .btnProduct {
        background-color:var(--red);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    .btnProduct:hover {
        background-color:var(--black);
    }
    .stars {
        color: #FFD700;
    }
    /* product section end */

    /* joging shoes start */
    .jogging-shoes-section {
        background-color: #f6f6f6;
        padding: 50px 0;
      }
      
      .sale-text {
        font-size: 2.5rem;
        font-weight: bold;
        color: #f44336;
        margin-bottom: 20px;
      }
      
      .shoe-name {
        font-size: 3rem;
        font-weight: bold;
        color: #000;
        margin-bottom: 20px;
      }
      
      .price {
        font-size: 2rem;
        font-weight: bold;
        color: #000;
        margin-bottom: 30px;
      }
      
      .see-more-btn {
        background-color:var(--red);
        border: none;
        color: white;
        padding: 10px 20px;
        font-size: 1rem;
        border-radius: 5px;
        transition: 0.3s;
      }
      
      .see-more-btn:hover {
        background-color:var(--black);
      }
    /* joging shoes end */


/* body content section start */
.product-page {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color:var(--white);
    padding: 20px;
}
.image-section img {
    max-width: 100%;
    border-radius: 10px;
}
.details-section {
    color:var(--black);
}
.details-section h3 {
    font-size: 2rem;
    font-weight: bold;
}

.details-section p{
    text-align:justify;
}
.details-section .btn {
    width:133px;
    background-color:var(--black);
    color: #fff;
    border: none;
}
.details-section .btn:hover {
    background-color:var(--red);
    color:var(--white);
}

/* product section start */

  .shop-category {
    background-color: #fdf58e;
    padding: 2rem 1rem;
  }
  .shop-category h2 {
    font-size: 2rem;
    font-weight:700;
    margin-bottom: 2rem;
    color:var(--red);
  }
  .category-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  .category-card:hover {
    transform: translateY(-5px);
  }
  .category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .category-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
/* product section end */

/* Fixed Background Start */
#fixedContainer {
    width: 100%;
    height: 60vh;
    background-image: url('/assets/img/SeasonBanner.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* Ensures full coverage */
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Styling for the text */
#fixedContainer h2 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
}

/* Button Styling */
.btn-join {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: var(--black);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.btn-join:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Responsive Fix */
@media (max-width: 768px) {

    #fixedContainer {
        height: 40vh;
        background-color: var(--yellow);
        background-size: contain;
    }

    #fixedContainer h2 {
        font-size: 16px;
    }

    .btn-join {
        padding: 10px 20px;
    }
}

/* fixed background end */



/* custom card design with product of insoles start */
/* Custom Card Container */
#custom-cardContainer {
    background-color:#fdf58e;
    padding: 40px 20px;
  }
  
  /* Custom Card */
  #custom-cardContainer .custom-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
  }
  
  #custom-cardContainer .custom-card:hover {
    transform: translateY(-5px);
  }
  
  /* Images in Custom Card */
  #custom-cardContainer .custom-card .card-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Ensures a square aspect ratio */
    overflow: hidden;
  }
  
  #custom-cardContainer .custom-card .card-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container without distortion */
    border-radius: 12px;
  }
  
  /* Heart Icon */
  #custom-cardContainer .custom-card .heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 36px; /* Increased size */
    color: var(--black);
    opacity: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
    
  }
  
  #custom-cardContainer .custom-card:hover .heart-icon {
    opacity: 1;
    transform: rotate(360deg);
    color: var(--white);
    background-color:var(--black);
    border-radius:7px;
  }
  
/* custom card design with product of insoles end */
/* body content section end */



/* collection start */
.product__header {
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('/assets/img/insolesBanner.jpg') no-repeat center;
    background-size: cover;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.product__header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product__header p {
    font-size: 1.5rem;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .product__header {
        height: 30vh;
        background-size: contain; /* Ensures full image is shown */
    }

    .product__header h1 {
        font-size: 2rem;
    }

    .product__header p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .product__header {
        height: 30vh;
    }

    .product__header h1 {
        font-size: 1.8rem;
    }

    .product__header p {
        font-size: 1rem;
    }
}

/* About Us Css */

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* about header */
.about-header {
    /* background-color:gray; */
    position: relative;
    background-image: url('/assets/img/aboutBackground.png');
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    height:auto;
    overflow: hidden;
}



.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(4px);
    z-index: 0;
}

.about-header-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
}
.right-slider{
    z-index:999;
}

@media (max-width: 768px) {
    .carousel-inner img {
        height: auto; /* Adjust height for smaller devices */
    }
}

@media (max-width: 480px) {
    .carousel-inner img {
        height: auto; /* Further adjustment for very small devices */
    }
}


/* insoles Comfort */
.insolesComfort {
    background: linear-gradient(135deg, #021633 0%, #520303 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.insolesComfort::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/img/aboutUs/insolescomfortBackground.jpg') no-repeat center center/cover;
    opacity: 0.3;
    z-index: 0;
}

.insolesComfort-content {
    position: relative;
    z-index: 1;
}

.insolesComfort-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-in-out;
}

.insolesComfort-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 20px 0;
    animation: fadeInUp 1s ease-in-out 0.3s;
    animation-fill-mode: backwards;
}

.insolesComfort-description {
    font-size: 1.1rem;
    color: #f8f9fa;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-in-out 0.6s;
    animation-fill-mode: backwards;
}

.insolesComfort-btn {
    background-color: #dab5b5;
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-in-out 0.9s;
    animation-fill-mode: backwards;
}

.insolesComfort-btn:hover {
    background-color: #e63939;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Keyframe Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .insolesComfort-title {
        font-size: 2.5rem;
    }

    .insolesComfort-subtitle {
        font-size: 1.2rem;
    }

    .insolesComfort-description {
        font-size: 1rem;
    }
}
/* insoles comfort */

/* About Section Styling */
        .about-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .about-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .about-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background-color: #ff4d4d;
            bottom: -10px;
            left: 0;
            transition: width 0.3s ease;
        }

        .about-title:hover::after {
            width: 100%;
        }

        .about-text {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .about-image {
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .about-image:hover {
            transform: translateY(-10px);
        }

        /* Team Section Styling */
        .team-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
        }

        .team-title {
            font-size: 2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 40px;
            text-align: center;
        }

        .team-card {
            background: #2c3e50;
            color: #fff;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 77, 77, 0.3), rgba(0, 0, 0, 0.5));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover::before {
            opacity: 1;
        }

        .team-info {
            position: relative;
            z-index: 1;
        }

        .team-label {
            font-size: 0.9rem;
            color: #ff4d4d;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-label::before {
            content: '🌟';
            margin-right: 5px;
        }

        .team-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .team-role {
            font-size: 1rem;
            font-weight: 300;
            color: #d1d4d8;
        }

        /* Animations */
        .fade-in-up {
            animation: fadeInUp 1s ease-in-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .about-title {
                font-size: 2rem;
            }

            .about-text {
                font-size: 1rem;
            }

            .team-name {
                font-size: 1.2rem;
            }

            .team-role {
                font-size: 0.9rem;
            }
        }


        /* About Section Styling */
        .about-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .about-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .about-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background-color: #ff4d4d;
            bottom: -10px;
            left: 0;
            transition: width 0.3s ease;
        }

        .about-title:hover::after {
            width: 100%;
        }

        .about-text {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .about-image {
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .about-image:hover {
            transform: translateY(-10px);
        }

        /* Products Section Styling */
        .products-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
        }

        .products-title {
            font-size: 2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 40px;
            text-align: center;
        }

        .product-card {
            background: #fff;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            text-align: center;
            padding: 20px;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .product-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .product-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .product-description {
            font-size: 0.9rem;
            color: #6c757d;
        }

        .proBtn {
            background-color:var(--red);
            border: none;
            padding: 12px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-in-out 0.9s;
            animation-fill-mode: backwards;
        }
        
        .proBtn:hover {
            background-color:var(--black);
            color:var(--white);
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        /* Animations */
        .fade-in-up {
            animation: fadeInUp 1s ease-in-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .about-title {
                font-size: 2rem;
            }

            .about-text {
                font-size: 1rem;
            }

            .products-title {
                font-size: 1.8rem;
            }

            .product-name {
                font-size: 1rem;
            }

            .product-description {
                font-size: 0.8rem;
            }
        }