* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: #FFEFEB;
    height: 100vh;
}

/* signup page */

.signup-form {
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 380px;
    /* max-width: 100%; */
    margin: auto;
    box-shadow: -2px -1px 68.3px -24px #e08450;
    background-color: #fff;
    font-size: 14px;
}

.section-card{
  border-radius: 12px;
    /* padding: 30px; */
    width: 100%;
    /* margin: auto; */
    box-shadow: -1.8px 27px 61.6px -34px #e08450;
    background-color: #fff;
    font-size: 14px;
    /* height: 100vh; */
}

.signup-form input , select{
    border-radius: 7.3px;
    border: solid 0.8px rgba(0, 0, 0, 0.34);
    background-color: rgba(250, 220, 212, 0.32);
}

/* progress bar */
/* Progress Container */
.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: Arial, sans-serif;
    /* margin: 20px; */
  }

  /* Circular Progress Indicator */
  .progress-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(#F95329 0%, #e0e0e0 0%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
  }

  /* Step Number in Circle */
  .step-count {
    position: absolute;
    color: #F95329;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
  }

  /* Progress Text */
  .progress-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .step-info {
    font-size: 16px;
    color: #555;
    margin: 0;
  }

  .step-title {
    font-size: 14px;
    font-weight: bold;
    color: #F95329;
    margin: 0;
  }

  /* Buttons */
  .progress-buttons {
    margin-top: 20px;
  }

  button {
    padding: 8px 16px;
    margin: 0 5px;
    border: none;
    background-color: #F95329;
    color: white;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
  }

  button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  form{
    font-size: 15px;
  }
  .form-select{
    font-size:14px;
    color:#555;
  }

  .radio-btn{
    background:#FFE8E2;
    border:0.8px solid #757575;
    width: 150px;
    /* height:50px; */
  }

  /* login page */
  .login-bg{
    /* max-height: 750px; */
    background:url('../Images/clothing-bannerNew.png');
    background-position: center;
    background-size: cover;
    height: 100vh;
    /* background-repeat: no-repeat; */
  }

  .btn-cancel{
    background-color: #FFF3E0;
    color:#F95329;
    border:0.8px solid #FF5722;
  }
  .btn-cancel:hover{
    background-color: #f9bb58;
    color:#F95329;
    border:0.8px solid #FF5722;
  }


  /* sidenav */
  #toggle-btn{
  opacity: 0;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  background: #FFEFEB;
  z-index: 500;
  padding: 6px 14px;
  transition: all 0.5s ease;
}

.sidebar.close {
  width: 78px;
}


.sidebar .logo-details {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}


.sidebar .logo-details .logo_name {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 100;
  transition: all 0.5s ease;

}

.sidebar .close .logo-details .logo_name {
  display: none;
}

.sidebar .logo-details #btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}


.sidebar .nav-links {
  height: 100%;
  padding: 0 0 150px 0;
  overflow: auto;
}

.sidebar.close .nav-links {
  overflow: visible;
}

.sidebar .nav-links::-webkit-scrollbar {
  display: none;
}

.sidebar .nav-links li {
  position: relative;
  list-style: none;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  transition: all 0.4s ease;
}

.sidebar .nav-links li:hover {
  /* background: #e08450; */
  border-radius:0;
  background-color: rgba(255, 226, 219, 0.79);
  border-right:5px solid #ff3a12;
}

.sidebar .nav-links li:hover .link_name {
  color: #000;
  transition: all 0.5s ease;

}

.sidebar li a:hover i {
  transition: all 0.5s ease;
  color: #F95329;
}

.sidebar .nav-links li .nav-icon {
  display: flex;
  justify-content: space-between;

}

.sidebar.close .nav-links li .nav-icon {
  display: block;
  justify-content: center;
}

.sidebar .nav-links li i {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
  text-align: center;
  line-height: 50px;
  color: #000;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
}

.sidebar.close .nav-links i.arrow {
  display: none;
}

.sidebar .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.sidebar .nav-links li a i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}

.sidebar .close .nav-links li a i {
  /* display: flex;
  justify-content: center; */
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}

.sidebar .nav-links li a .link_name {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  transition: all 0.4s ease;
  display: block;
}

.sidebar.close .nav-links li a .link_name {
  display: none;
  pointer-events: none;
}

.sidebar .nav-links li .sub-menu {
  /* padding: 6px 6px 14px 80px; */
  /* margin-top: -10px; */
  background: #eea87f;
  display: none;
}

.sidebar .nav-links li.showMenu .sub-menu {
  display: block;
}

.sidebar .nav-links li .sub-menu a {
  color: black;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.sidebar .nav-links li .sub-menu a:hover {
  opacity: 1;
}

.sidebar.close .nav-links li .sub-menu {
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}

.sidebar.close .nav-links li:hover .sub-menu {
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}

.sidebar .nav-links li .sub-menu .link_name {
  display: none;
}

.sidebar.close .nav-links li .sub-menu .link_name {
  font-size: 18px;
  opacity: 1;
  display: block;
}

.sidebar .nav-links li .sub-menu.blank {
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}

.sidebar .nav-links li:hover .sub-menu.blank {
  top: 50%;
  transform: translateY(-50%);

}

.sidebar input {
  padding: 0 20px 0 50px;
  width: 100%;
}

.sidebar .bx-search:hover {
  background: #1d1b31;
  color: #FFF;
}

.sidebar .profile {
  width: 250px;
  background: #F95329;
  position: fixed;
  height: 60px;
  /* width: 78px;  */
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  transition: all 0.5s ease;
  overflow: hidden;
}

.sidebar .profile #log_out {
  width: 50px;
  text-align: end;
  background: none;
  background: #F95329;
  color: #fff;
}

.sidebar .close .profile {
  display: none;
  background: #F95329;
  position: fixed;
  height: 60px;
  /* width: 78px;  */
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  transition: all 0.5s ease;
  overflow: hidden;
}

.sidebar .profile #log_out {
  width: 50px;
  text-align: end;
  background: none;
  background: #F95329;
  color: #fff;
}


.sidebar input {
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #eea87f;
}


.sidebar .bx-search {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #eea87f;
  color: #FFF;
}

.sidebar .bx-search:hover {
  background: #FFF;
  color: #11101d;
}



.home-section {
  position: relative;
  background-color: #F6FCFD;
  /* height: 100%; */
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
}

.sidebar.close~.home-section {
  left: 78px;
  width: calc(100% - 78px);
}



.home-section .home-content .text {
  font-size: 26px;
  font-weight: 600;
}

/* Move the profile inside .nav-links */
.sidebar .nav-links .profile {

  position: fixed;
  display: flex;
  height: 60px;
  width: 250px;
  left: 0;
  color: #fff;
  bottom: -8px;
  padding: 10px 14px;
  border-radius: 0;
  justify-content: space-between;
  background-color: #F95329;
  transition: all 0.5s ease;
  overflow: hidden;
}


/* Hide profile name when sidebar is closed */
.sidebar.close .nav-links .profile .name {
  display: none;
}

/* Adjust profile visibility and transition */
.sidebar.close .nav-links .profile {
  justify-content: center;
  /* padding: 10px 20px; */
  position: fixed;
  width: 78px;
}

/* Adjusting the profile logout button */
.sidebar .profile #log_out {
  width: 50px;
  text-align: end;
  background: none;
  /* background: #F95329; */
  color: #fff;
}




.sidebar .nav-links li.showMenu .sub-menu {
  display: block;
}


/* .home-section {
  position: relative;
  background-color: #FAFAFA;
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
} */


/*  */
.btn-orange {
    background-color: #ff4d22;
    color: #fff;
    font-size: 15px;
}

.btn-orange:hover {
    background-color: #ff3a12;
}

.metrics-card {
    /* background-color: #fff7f5; */
    max-width: 95%;
    border-radius: 14px;
    background-image: linear-gradient(311deg, #fff3e0 4%, #ffe0b2 54%);
}

/* Ensure submenu stays visible when sidebar is collapsed */


/* Dropdown styles */
.sidebar li.dropdown {
  position: relative;
}

.sidebar li.dropdown .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: calc(100% + 10px); /* Appears outside the collapsed sidebar */
  background: #FFEFEB;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 400;
}

.sidebar li.dropdown.open .submenu {
  display: block;
}

.sidebar.open li.dropdown .submenu {
  left: 0; /* Aligns with the expanded sidebar */
  position: relative;
  box-shadow: none;
}


/* quick links */
.quick-card{

  background-color: #FFE9C8;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* new listing modal */
.list-modal-header{
  background-color: #FFE0B2;
  border:1px solid #ff957b6b;
}
.orange-text{
  color:#FE0000;
}


/* Manage Listing */
.manage-card{
  padding: 29px 66px 27px 34px;
  border-radius: 21px;
  box-shadow: -1.8px 27px 61.6px -34px #e08450;
  /* background-image: linear-gradient(to bottom, #ffe0b2 100%, #ff967b -28%); */
  background-image: linear-gradient(to bottom, #ffe0b2 6%, #ff967b 108%);
}

.search {
  display: inline-block;
  position: relative;
  width: 100%;
}

.search input[type="text"] {
  /* width: 450px; */
  width: 80%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search button[type="submit"] {
  background-color: #4e99e9;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 2;
  right: 40;
  /* transition: .9s ease; */
}

.search button[type="submit"]:hover {
  /* transform: scale(1.1); */
  color: rgb(255, 255, 255);
  background-color: blue;
}


.product-table th {
  background-color: #ffe3d3;
  border:0.8px solid #ff957b7b;
  font-size: 15px;
  font-weight:500;

}
.product-table tbody tr  {
  font-size: 14px;
  padding: 5px 10px;
}

.product-table .badge{
  font-size:14px;
}

.btn-active{
  background-color: #C1DEC1;
  font-size: 14px;
}
.btn-inactive{
  background-color: #FFB8B8;
  font-size: 14px;
}

/* add new product */

/* product image upload*/
.edit-container {
  max-width: 960px;
  /* margin: 30px auto; */
  padding: 20px;
}

.upload-image {
  position: relative;
  max-width: 205px;
  margin: 16px auto;
}
.upload-image.image-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}
.image-edit input {
  display: none!important;
}
 .image-edit input + label {
  display: inline-block;
  position: absolute;
  z-index: 2;
  margin-top: 92%;
  margin-left: -40%;
  width: 154px;
  height: 34px;
  /* border-radius: 100%; */
  /* background: #000; */
  /* color:#fff; */
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.image-edit input  label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.image-edit input  label:after {

  /* font-family: 'FontAwesome'; */
  color: #757575;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.image-preview {
  width: 192px;
  height: 192px;
  position: relative;
  /* border-radius: 100%; */
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
 .image-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* download invoice page */

.invoice-header {
  margin-bottom: 20px;
}

.invoice-header h1 {
  font-size: 20px;
  color: #ff4b4b;
}


 .invoice-table th, .invoice-table td {
  /* text-align: left; */
  font-size: 14px;
}

/*.btn-primary {
  background-color: #ff4b4b;
  border: none;
}

.btn-outline-primary {
  color: #ff4b4b;
  border-color: #ff4b4b;
}

.btn-outline-primary:hover {
  background-color: #ff4b4b;
  color: #fff;
}

.btn-secondary {
  background-color: #88d0ff;
  border: none;
} */

/* date input */

.coolinput {
  display: flex;
  flex-direction: column;
  width: fit-content;
  position: static;
  max-width: 240px;
}

.coolinput label.text {
  font-size: 0.75rem;
  color: #F95329;
  font-weight: 700;
  position: relative;
  top: 0.5rem;
  margin: 0 0 0 7px;
  padding: 0 3px;
  background: #FFE0B2;
  width: fit-content;
}

.coolinput input[type=date].input {
  /* padding: 11px 10px; */
  padding: 8px 5px;
  font-size: 0.75rem;
  border: 2px #F95329 solid;
  border-radius: 5px;
  background: #FFE0B2;
}

.coolinput input[type=date].input:focus {
  outline: none;
}

/* buyers questions */
.messageBox {
  /* width: fit-content; */
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 0 15px;
  border-radius: 10px;
  border: 1px solid rgb(63, 63, 63);
}
#messageInput {
  width: 100%;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  padding-left: 10px;
  text-wrap: wrap;
}
.fileUploadWrapper {
  width: fit-content;
  height: 100%;
  display: flex
;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
}



/* image upload */
.upload-container {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}
.upload-box {
  border: 2px dashed #e08450;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}
.preview-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.preview-images img {
  /* width: 20%;
  height: 20%; */
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 5px;
}

/* option wrapper */
.options-wrapper {
  height: 60%;
  overflow :scroll;
  
}

div::-webkit-scrollbar {
  width: 3px;
  height: 5px;
}

/* Track */
 div ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
div ::-webkit-scrollbar-thumb {
  background-color: #ff3a12;
  border-radius: 10px;
  
}