body {
    font-family: "Archivo", sans-serif;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    gap: 80px;
}
.image-section {
    position: relative;
}
.slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 500px;
    position: relative;
}
.slider img.main-image {
    width: 100% ;
    height: auto;
    margin-bottom: 10px;
}
.slider img.main-image.fade {
    animation: fade 0.5s ease-in-out;
}
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider .prev {
    left: 0px;
    z-index: 1;
}
.slider .prev img {
    width: 20px;
    height: 20px;
    transform: rotate(180deg); 
}
.slider .next img {
    width: 20px;
    height: 20px;
}
.slider .next {
    right: -0px;
}
.image-section .gallery {
    display: flex;
    gap: 10px;
}
.image-section .gallery img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 1px solid #fff;
}
.image-section .gallery img.active {
    border-color: #000;
}
.details {
    max-width: 50%;
}
.product-title {
    font-size: 24px;
    color: #243A7B;
    font-weight: 300;
    margin-bottom: 10px;
    border-bottom: 1px solid #243A7B;
    max-width: fit-content;
}   
.color-options {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}
.color-options div {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
}
.color-options .active {
    border-color: #084679;
}
.size{
    font-size: 16px;
    color: #243A7B;
    font-style: italic;
}
.size-options {
    display: flex;
    justify-content: start;
    gap: 10px;
    margin: 20px 0;
}
.selected-color-name{
    font-size: 14px;
    color: #243A7B;
    font-weight: 700;
    margin-bottom: 10px;
}
.size-options button {
    padding: 5px 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}
.size-options button:hover{
    background: #243A7B;
    color: white;

}
.fit-options {
    margin: 20px 0;
}
.fit-options .range {
    width: 200px;
}
.size-chart-text{
    color: #243A7B;
    cursor: pointer;
    display: block;
    font-style: italic;
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 12px;
    text-decoration: none;
}
button.add-to-bag {
    background-color: #243A7B;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    border: 1px solid #243A7B;
}
button.add-to-bag:hover {
    background-color: #ffffff;
    border: 1px solid #243A7B;
    color: #243A7B;
}

/* Related Products Slider */
.related-products {
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
}
.related-products h3 {
    color: #1e40af;
    margin-bottom: 20px;
}
.related-slider {
    position: relative;
    overflow: hidden;
}
.related-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%; /* 8 slides, 4 visible at a time */
}
.active-size{
    background-color: #243A7B !important;
    color: rgb(255, 247, 247);
    border-color: #1e40af;
    offset-distance: 10px;
     border: 1px solid #0f2057 ;
    outline: 1px solid #0f2057; /* Border-like outline */
    outline-offset: 1px; 
}
.slide {
    width: 12.5%; /* 100% / 8 slides */
    text-align: center;
    margin-right: 20px;
}
.slide img {
    width: 200px;
    height: 300px;
    object-fit: cover;
}
.slide p {
    margin: 10px 0;
    font-size: 14px;
}
.slide .price {
    color: #1e40af;
    font-weight: bold;
}
.related-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8888;
}
.prev-related {
    left: 0;
}
.prev-related .slide-arrow img {
    width: 20px;
    height: 20px;
    transform: rotate(180deg); /* Pointing left */  
    z-index: 999 !important;
    
}
.next-related .slide-arrow img {
    width: 20px;
    height: 20px;
    z-index: 999 !important;

}   
.next-related {
    right: 0;
}

/* Navigation Buttons at Bottom */
.nav-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.nav-dot {
    width: 20px;
    height: 5px;
    background-color: #bbb;
    border-radius: 12px;
    margin: 0 5px;
    border: none;
    cursor: pointer;
}
.nav-dot.active {
    background-color: #1e40af;
}


.section-1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    margin-top: 20px;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-1 img, .section-2 >div:nth-child(2) img {
    width: 100%;
}
.section-2{
    display: flex;
}
/* THis section from 3 to 4 */
.section-4{
    flex-direction: row-reverse;
}

/* From section 4 to 3 */
.section-3{
    /* width: 200%; */
    width: 100%;
}
/* From section 4 to 3 */

.section-3 iframe{
    width: 100%;
    height:800px;
    border: none;
}
.section-2>div:nth-child(1) {
    width: calc(50% - 140px);  
    max-width: 50%;
    padding-left: 80px !important;
    padding-right: 80px !important; ;  
}
.section-2>div:nth-child(2){
    width: 50%;
}

.section-6{
    flex-direction: row-reverse;
    padding-top: 40px;
}
.section-6 img{
    /* width: 100% !important; */
    /* max-width: 600px; */
    /* height: auto; */
    object-fit: cover;
}
.section-6-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
    color: #243A7B;
}
.section-6-grid p{
    padding: 0;
    margin: 4px 0;
}

.final-section-image{
    object-fit: cover;
    max-height: 960px;
    max-width: 100%;
}


.icons-section{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
}
.icons-section .icon-item{
    max-width: 180px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.icon-item p{
    min-height: 80px;
    font-size: 13px;
    font-weight: 700;
    color: #243A7B;
    line-height: 1.5;
    
}
.description-content{
    color: #243A7B;
    max-height: 0;
    font-size: 12px;
    padding-left: 12px;
    overflow: hidden;
    transition: all 0.8s;
}

.rotate{
    transform: rotate(90deg); /* pointing down */
}
.description-content.show{
    max-height: 500px;

}
.toggle-title{
    color: #243A7B;
    cursor: pointer;
}
.description-arrow, .details-arrow {
    position: relative;
     max-width: fit-content;
     display: inline-flex;
     justify-content: center;
     align-items: center;
     transition: transform 0.6s ease;      
}


.description-arrow img, .details-arrow img {
    /* position: absolute; */
    display: block;
    margin-top: 0px;
    width: 6px !important;
    /*  */
    height: 6px !important;
    display: inline-block;
    transition: transform 0.6s ease;
   
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .slider {
        width: 100%;
    }
      .slider-track{
        max-width: 100%;
      } 
      .size-options{
        flex-wrap: wrap;
        /* justify-content: center; */
      }
      .size-options button {
        width: 24px;
        height: 24px;
    }
    .details{
        max-width: 100%;
    }
    .main-image-wrapper {
        width: 100%;
        height: auto;
    }
    .slider img.main-image {
        width: 100%;
    }
    .container {
        flex-direction: column;
        align-items: center;
    }
    .image-section, .details {
        width: 100%;
      
    }
    .related-slider {
        width: 100%;
    }
    .related-slides {
        flex-wrap: nowrap;
        width: 400%; /* 8 slides, 2 visible at a time on mobile */
    }
    .not-desktop{
        display: none ;

    }
    .slide {
        width: 55% !important;
    }
    .slide img {
        width: 150px;
        height: 225px;
    }
    .nav-buttons {
        margin-top: 5px;
    }
    .nav-dot {
        width: 20px;
        height: 5px;
    }

    .section-2{
        padding: 0 !important;
    }
    .section-all{
    flex-direction: column; 
    /* padding: 0 !important;   */
}

 
.section-2>div:nth-child(1) {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important; 
}

.section-6-padd{
    padding: 0 !important;
}
.section-2 >div:nth-child(2) img {
    width: 100%;
}
.section-2>div:nth-child(2) {
    width: 100% !important;
    max-width: 100% !important;
}

.description-section {
    margin: 20px 0;
}
.toggle-title {
    cursor: pointer;
    color: #243A7B;
    margin-bottom: 10px;
    font-size: 18px;
}
.description-content {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    font-size: 11px;
    color:#243A7B;
    padding-left: 20px;
}
.description-content ul {
    list-style-type:none;
    padding-left: 0px;
    padding-top: 0px;
    line-height: 2.5;
}
.description-content li {
    font-weight: 700;
    font-size: 12px;
}
.description-content.show {
    max-height: 500px !important; 
    opacity: 1;
}
.description-arrow, .details-arrow {
    position: relative;
     max-width: fit-content;
     display: inline-flex;
     justify-content: center;
     align-items: center;
     transition: transform 0.6s ease;      
}


.description-arrow img, .details-arrow img {
    /* position: absolute; */
    display: block;
    margin-top: 0px;
    width: 6px !important;
    /*  */
    height: 6px !important;
    display: inline-block;
    transition: transform 0.6s ease;
   
}
.mob-hidden{
    display: none
}
.icons-section{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.wac{
    display: flex;
    justify-content: space-between;
    max-width: 400px;
}
.wacarr img{
    width: 14px;
    height: 14px;
}
.wacarr{
    transform: rotate(-90deg);
    transition: all 0.5s ease;
}
.rotate{
  transform: rotate(90deg); /* pointing down */
}

.rotatewac{
    transform: rotate(-270deg);
}
.details-section {
    margin: 20px 0;
}
.wash-care-section {
    margin: 20px 0;
}
.section-3 iframe{
    width: 100%;
    min-height: 200px;
    max-height: 70px;
    border: none;
}

}


    .slider-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 300px;
      padding-bottom: 20px;
    }

    .slider-track {
      display: flex;
      align-items: center;
      position: relative;
      width: 300px;
    }

    .slider-track::before {
      content: "";
      position: absolute;
      top: 35%;
      left: 0;  
      right: 0;
      background-color: #1b2d66;
      z-index: 0;
      height: 1px;
    }
.step:nth-child(1)::before{
content: "slim";
position: absolute;
left:0px;
top: 16px;
font-size: 12px;
}
.step:nth-child(3)::before{
content: "standard";
position: absolute;
left:-15px;
top: 16px;
font-size: 12px;
}
.step:nth-child(5)::before{
content: "oversized";
position: absolute;
left:-15px;
top: 16px;
font-size: 12px;
}
    .step {
      position: relative;
      z-index: 1;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #1b2d66;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step.open {
      background-color: #fff;
      border: 2px solid #1b2d66;
      margin-top: -1px;
    }

    .steps {
      display: flex;
      justify-content: space-between;
      width: 100%;
    }

    .labels {
      display: flex;
      justify-content: space-between;
      width: 100%;
      margin-top: 10px;
      font-size: 14px;
      color: #1b2d66;
    }