@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Oswald:wght@200..700&display=swap');

.product-container{
    margin-top: 50px;
    display: flex;
    flex-direction:column;
    align-items: center;
    padding: 20px;

}
.display{
    display:flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 30px;
    font-family: "Oswald", sans-serif;cursor: pointer;
}
.display img{
    width: auto;
    height:350px;
    object-fit: cover;
}
.product-title{
   width: 400px;
   font-size: 30px;
   font-family: Verdana, Geneva, Tahoma, sans-serif;
   font-weight: bolder;
}
.product-price{
    font-size: 20px;
    font-family: "Oswald", sans-serif;cursor: pointer;
}
.selection-form {
  font-family: Arial, Helvetica, sans-serif;
  padding: 40px;

}

.custom-select {
  margin-bottom: 25px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #000;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  width:200px;
}

.select-box {
  position: relative;
  border: 1px solid #000;
  cursor: pointer;
  user-select: none;
}

.select-box .selected {
  padding: 12px;
  font-size: 15px;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.select-box::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  pointer-events: none;
}

.select-box .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 195px;
  border: 1px solid #000;
  border-top: none;
  background: #fff;
  z-index: 100;
  max-height: 160px;
  overflow-y: auto;
}

.select-box.active .options {
  display: block;
}

.select-box .options li {
  padding: 12px;
  font-size: 15px;
  color: #000;
  transition: background 0.2s;
}

.select-box .options li:hover {
  background: #000;
  color: #fff;
}
.sub-btn button{
    width:100%;
    height:50px;
    color:white;
    background-color: black;
    border: none;
     font-family: "Oswald", sans-serif;cursor: pointer;
     font-size: 18px;
     text-transform: uppercase;
}
.sub-btn button:hover{
    color: white;
    background-color: rgb(106,4, 71);
    transition: 0.4s;
    
}
.product-discripion{
    padding: 40px;
}
.discription,.fabrication,.size-chart,.shipping-return{
    display: flex;
    flex-direction: column;
    

}
.disc-upper{
    display: flex;
    justify-content: space-between;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    font-size:25px ;
}
.disc-1{
    font-family: 'Oswald', sans-serif;margin: 10px 0px;
}
.toggle-sign {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.disc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.disc-content.active {
  max-height: 700px; /* enough to show text */
  opacity: 1;
}
.shipping-info{
    font-family: 'Oswald', sans-serif;margin: 5px 0px;
    text-transform: uppercase;
    font-weight: 500;
}