/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  .catalog-container {
    display: flex;
    width: 100%;
    /* height: 100vh; */
    /* background: url('/assets/img/catalogue.png') no-repeat center center; */
    color: #fff;
    justify-content: space-between;
  }
  
  .sidebar {
    width: 20%;
    padding: 95px 20px 80px;
    z-index: 10;
  }
  
  .sidebar ul {
    list-style: none;
  }
  .copyright {
    color: #525252;
    font-size: 14px;
    text-align: center;
}
  .sidebar li {
    margin: 10px 0;
    cursor: pointer;
    font-size: 16px;
  }
  .copy-cont {
    position: absolute;
    color: #333;
    right: 0;
    bottom: 0;
    width: 26%;
    padding: 0;
    margin: 0px 0px;
}
  .sidebar .active {
    font-weight: bold;
    color: #fff;
    position: relative;
  }
  .sidebar ul{
    padding-left: 80;
    display: grid;
    gap: 32px;
  }
  
  .sidebar .active::after {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 19px;
    height: 25px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white"  class="bi bi-arrow-right" viewBox="0 0 16 16"%3E%3Cpath fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8"%2F%3E%3C%2Fsvg%3E') no-repeat center center;
    stroke:#ffffff; 
    stroke-width:1.5;
    background-size: contain;
  }
  .center {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .image-wrapper {
    position: relative;
  }
  
  .uniform {
    position: absolute;
    z-index: 2;
    width: 60%;
  }
  
  .background {
    background: url('wardrobe.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    width: 80%;
    margin: auto;
    z-index: 1;
  }
  .right1{
    z-index: 10;
    width: 30%;
    padding: 115px 100px 40px 0px;
    display: grid;
    gap: 100px;
  }
  
  .right {
   
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 10;
  }
  
  .right h1 {
    font-size: 45px;
    margin-bottom: 20px;
  }
  
  .right p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 10px 20px;
    background: #fff;
    color: #1A7EF2;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
  }
 
  .pagination {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    bottom: 32px;
  }
  
  .pagination .prev, .pagination .next {
    background: none;
    /* border: 1px solid #fff; */
    padding: 5px 10px;
    color: #fff;
    cursor: pointer;
    font-family: Playfair Display;
    font-size: 32px;
    display: flex ;
        align-items: center;
        gap: 16px
  }
  #slide-number{
    font-size: 24px;
  }
  .background-img{
    display: block;
  }
  .background-img-mbl{
    display: none;
  }
  /* .desktop-image {
    display: block; 
}

.mobile-image {
    display: none;  
} */

  @media (max-width: 900px) {
    /* .desktop-image {
        display: none;  
    }

    .mobile-image {
        display: block;
    } */
    .center {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .sidebar .active::after {
        display: none;
    }
    .sidebar .active {
       
        border: 1px solid white;
        padding: 8px 8px;
    }
    .background-img{
        display: none;
      }
      .background-img-mbl{
        display: block;
        position: absolute;
    width: 100%;
    z-index: 1;
      }
      .sidebar {
        width: 100%;
        padding: 95px 20px;
        z-index: 10;
    }
    .sidebar ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        display: flex;
        flex-direction: row;
        scrollbar-width: none;
    }
    .right1 {
        z-index: 10;
        width: 100%;
        padding: 40px 10px 40px 10px;
        display: grid;
        gap: 100px;
    }
    .right h1{
        font-size: 36px;
    }
    .catalog-container {
        display: flex
    ;
        width: 100%;
        /* height: 100vh; */
        /* background: url(/assets/img/catalogue.png) no-repeat center center; */
        color: #fff;
        justify-content: space-between;
        flex-direction: column;
        background-color: #e78c46;
    }
    .sidebar li {
      
      box-sizing: border-box;
    }
  
    .sidebar {
      padding: 24px 16px; /* Optional: Adds some padding to the sidebar */
    }
    .sidebar ul {
        flex-wrap: nowrap; /* Prevent wrapping */
        overflow-x: auto; /* Enable horizontal scrolling if needed */
        display: flex; /* Make the list horizontal */
        flex-direction: row; /* Ensure list items are in a row */
        padding: 0;
        margin: 0;
      }
    
      .sidebar li {
        box-sizing: border-box;
        flex: 0 0 auto; /* Prevent flex items from shrinking or stretching */
        width: auto; /* Ensures each list item takes up only as much width as needed */
        min-width: 120px; /* Ensures items don't get too small */
        padding: 10px 20px; /* Adds padding to list items */
        text-align: center; /* Centers the text inside the items */
        white-space: nowrap; /* Prevents text from wrapping inside the items */
        overflow: hidden; /* Ensures content doesn't overflow the li */
        text-overflow: ellipsis; /* Adds ellipsis for overflowing text */
      }
  }