
/* nav_code_end */
.Luxury_perfumes_img{
    width: 100%;
    height: 430px;
}


/* Loding_code_css */
.loading{
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  display: none;
  height: 50px;
  width: 50px;
  border: 5px solid black;
  border-radius: 50%;
  border-top-color: blue;
  transition: all 0.4s ease;
  animation: spin 1s linear infinite;
}
@keyframes spin{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}


.heading{
    text-align: center;
     padding-top:40px;
     font-family:"Minion Pro";
    text-transform: uppercase;
    color: #242323;
    word-spacing:6px;
    font-size: 39px;
    font-weight:normal;

}
/* CART_IMG CODE */

 .imgContainer {
      width:400px;
      height:390px;
      overflow: hidden;
      border-radius:5px;
      border: 1px solid rgb(221, 160, 39);
      position: relative;
    }
    .slider {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    .slider figure {
      display: flex;
      margin: 0;
      padding: 0;
      transition: transform 0.5s ease-in-out;
    }
    .slider figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 5px;
    }
    .dot {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: rgba(255,255,255,0.7);
      cursor: pointer;
    }
    .dot.active {
      background: rgba(255,255,255,1);
    }
    .card {
      margin-bottom: 2em;
    }

   #info {
    position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 10px;
  margin: auto;
  width: 90%;
  padding-top:20px;
}
.title_head{
  text-align: center;
  padding: 15px 0px;
  margin: auto;
  width: 80%;
  font-size:23px;
  word-spacing:1px;
  font-family:"Minion Pro";
  text-transform: uppercase;
  /* letter-spacing: 1px; */
  color:#4b4949;
}
.price{
  text-align: center;
  font-size: 19px;
  font-weight: bold;
 color:#3d3c3c;
  
}


.paginationBox {
  margin-bottom:50px;
  text-align: center;
  font-size: 20px;
}

.paginationBox button {
  padding: 13px 20px;
  margin: 0 10px;
  border: none;
  background:black;
  color: white;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.paginationBox button:disabled {
  background: #aaaaaa;
  cursor: not-allowed;
}

.paginationBox span {
  padding: 11px 12px;
  border: 1px solid black;
  border-radius: 5px;
  background: white;
  color: black;
  font-weight: bold;
}

.btn_div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.addBtn{
    width:360px;
    height: 52px;
    margin: 15px 0px;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #dfaa40;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
     border: 1px solid rgb(218, 150, 15);
    border-radius:2px;
    cursor: pointer;
}

.addBtn:hover {
    background-color:black;
    border: transparent;
    transition: all ease-in-out 0.5s;
}


.myVideo {
      width:100%;
    height: 650px;      /* jitni height chahiye utni do */
    object-fit:cover; /* poora video dikhega, crop nahi hoga */
    background:#aa90bf; /* video crop ho kar achha dikhayega */
}
/* 3rd code */

.custom-dropdown {
  width: 190px;
  height: 40px;
  position: relative;
  font-family: Arial, sans-serif;
  display:grid;
 margin:0px 115px;
 margin-top: 30px;
 margin-bottom: 10px;
  font-size: 17px;

}

.dropdown-selected {
  padding: 10px;
  background: #3e2324;
  border: 3px solid #f2b448;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
}

.dropdown-selected::after {
  content: "▼";
  float: right;
}

.dropdown-options {
  list-style: none;
  padding: 0;
  margin: 5px 0 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: none;
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 10;
}

.dropdown-options li {
  padding: 10px;
  cursor: pointer;
}

.dropdown-options li:hover {
  background: #3e2324;
  color: #fff;
}
.dropdown-selected{
  font-size:17px !important;
  letter-spacing: 1px;
}

/*  */



@media (max-width: 320px) {
  #info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0px 15px !important;
    margin: auto;
    width: 100%;
  }
  .imgContainer {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid rgb(221, 160, 39);
    position: relative;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
  .dots {
    bottom: 16px;
  }

  .paginationBox button {
    padding: 9px 14px;
    margin: 0 10px;
    font-size: 12px;
  }
  .paginationBox span {
    padding: 9px 10px;
    font-size: 11px;
  }
  .heading {
    text-align: center;
    padding-top: 21px;
    font-size: 19px;
  }
  .addBtn {
    width: 133px;
    height: 33px;
    margin: 2px 0px;
    font-size: 10px;
  }
  .title_head {
    padding: 10px 0px;
    width: 95%;
    font-size: 9px;
  }
  .price {
    font-size: 12px;
  }
  .Luxury_perfumes_img {
    height: 160px;
  }
  .custom-dropdown {
    width: 113px;
    height: 45px;
    position: relative;
    font-family: Arial, sans-serif;
    display: grid;
    margin: 30px 20px !important;
  }
  .dropdown-selected {
    font-size: 14px !important;
    letter-spacing: 1px;
    height: 39px;
  }
  .dropdown-options li {
    padding: 8px;
    font-size: 12px;
    cursor: pointer;
  }
  .myVideo {
    width: 100%;
    height: 251px;
    object-fit: cover;
    background: #aa90bf;
  }
}

@media (max-width: 420px) {
  #info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0px 10px;
    margin: auto;
    width: 100%;
  }
  .myVideo {
    width: 100%;
    height: 290px;
    object-fit: cover;
    background: #aa90bf;
  }
  .imgContainer {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid rgb(221, 160, 39);
    position: relative;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
  .dots {
    bottom: 16px;
  }

  .paginationBox button {
    padding: 9px 14px;
    margin: 0 10px;
    font-size: 12px;
  }
  .paginationBox span {
    padding: 9px 10px;
    font-size: 11px;
    border: 1px solid black;
    border-radius: 5px;
    background: white;
    color: black;
    font-weight: bold;
  }
  .heading {
    text-align: center;
    padding-top: 16px;
    font-size: 18px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .addBtn {
    width: 133px;
    height: 33px;
    margin: 2px 0px;
    font-size: 10px;
  }
  .title_head {
    padding: 10px 0px;
    width: 95%;
    font-size: 9px;
  }
  .price {
    font-size: 12px;
  }
  .Luxury_perfumes_img {
    height: 160px;
  }
  .custom-dropdown {
    width: 113px;
    height: 28px;
    position: relative;
    font-family: Arial, sans-serif;
    display: grid;
    margin: 30px 30px;
  }
  .dropdown-selected {
    font-size: 14px !important;
    letter-spacing: 1px;
    height: 39px;
  }
  .dropdown-options li {
    padding: 8px;
    font-size: 12px;
    cursor: pointer;
  }
}
@media (min-width: 421px) and (max-width: 440px) {
  #info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0px 10px;
    margin: auto;
    width: 100%;
  }
  .myVideo {
    width: 100%;
    height: 290px;
    object-fit: cover;
    background: #aa90bf;
  }
  .imgContainer {
    width: 190px;
    height: 190px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid rgb(221, 160, 39);
    position: relative;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
  .dots {
    bottom: 16px;
  }

  .paginationBox button {
    padding: 9px 14px;
    margin: 0 10px;
    font-size: 12px;
  }
  .paginationBox span {
    padding: 9px 10px;
    font-size: 11px;
    border: 1px solid black;
    border-radius: 5px;
    background: white;
    color: black;
    font-weight: bold;
  }
  .heading {
    text-align: center;
    padding-top: 16px;
    font-size: 18px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .addBtn {
    width: 190px;
    height: 38px;
    margin: 2px 0px;
    font-size: 10px;
  }
  .title_head {
    padding: 10px 0px;
    width: 95%;
    font-size: 9px;
  }
  .price {
    font-size: 12px;
  }
  .Luxury_perfumes_img {
    height: 160px;
  }
  .custom-dropdown {
    width: 113px;
    height: 28px;
    position: relative;
    font-family: Arial, sans-serif;
    display: grid;
    margin: 30px 21px;
  }
  .dropdown-selected {
    font-size: 14px !important;
    letter-spacing: 1px;
    height: 39px;
  }
  .dropdown-options li {
    padding: 8px;
    font-size: 12px;
    cursor: pointer;
  }
}

@media (min-width: 441px) and (max-width: 840px) {
  #info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    padding: 0px 10px;
    margin: auto;
    width: 100%;
  }
  .myVideo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background: #aa90bf;
  }
  .imgContainer {
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid rgb(221, 160, 39);
    position: relative;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
  .dots {
    bottom: 16px;
  }

  .paginationBox button {
    padding: 9px 14px;
    margin: 0 10px;
    font-size: 12px;
  }
  .paginationBox span {
    padding: 9px 10px;
    font-size: 11px;
    font-weight: bold;
  }
  .heading {
    text-align: center;
    padding-top: 24px;
    font-size: 24px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .addBtn {
    width: 200px;
    height: 34px;
    margin: 2px 0px;
    font-size: 10px;
  }
  .title_head {
    padding: 10px 0px;
    width: 95%;
    font-size: 9px;
  }
  .price {
    font-size: 12px;
  }
  .Luxury_perfumes_img {
    height: 252px;
  }
  .custom-dropdown {
    width: 120px;
    height: 28px;
    position: relative;
    font-family: Arial, sans-serif;
    display: grid;
    margin: 30px 30px;
  }
  .dropdown-selected {
    font-size: 14px !important;
    letter-spacing: 1px;
    height: 39px;
  }
  .dropdown-options li {
    padding: 8px;
    font-size: 12px;
    cursor: pointer;
  }
}

@media (min-width: 841px) and (max-width: 1080px) {
  .imgContainer {
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid rgb(221, 160, 39);
    position: relative;
  }
  .myVideo {
    width: 100%;
    height: 550px;
  }
  .addBtn {
    width: 300px;
    height: 50px;
    margin: 12px 0px;
    font-size: 15px;
  }
  .title_head {
    text-align: center;
    padding: 16px 0px;
    margin: auto;
    width: 95%;
    font-size: 17px;
  }
  #info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    padding: 0px 20px;
    margin: auto;
    width: 100%;
  }
  .custom-dropdown {
    width: 180px;
    height: 50px;
    position: relative;
    font-family: Arial, sans-serif;
    display: grid;
    margin: 30px 45px;
  }
}
