* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  list-style: none;
  text-decoration: none;
}
.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  padding-top: 1.6rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.container .box1 {
  max-width: 420px;
  width: 100%;
  padding: 0.65rem;
  background: linear-gradient(#d4d0eb, #a199cc, #9888c9);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 1rem 0.5rem;
  margin-top: -1.5rem;
}
/* Box 1 style start here */
.box1 .box {
  position: relative;
  width: 100%;
  /*height: 100%;*/
  background: var(--color-grey);
  padding: 1rem;
  border-radius: 30px;
  overflow-y: visible;
}
.box1 .box .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
}
.nav .bar {
  width: 30px;
  height: 2px;
  background-color: #38373c;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.nav .bar::before {
  content: "";
  position: absolute;
  width: 15px;
  background-color: #38373c;
  height: 2px;
  border-radius: 2px;
  bottom: -5px;
  left: 0;
}
.nav .logo {
  width: 30px;
  height: 30px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  cursor: pointer;
}
.nav .logo i {
  color: #515151;
}
.box1 .heading-row {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  align-items: center;
}
.box1 .box .heading-row .heading {
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #020202;
}
.box1 .box .heading-row .sub-title {
  font-size: 14px;
  color: #515151;
}
.box1 .box .heading-row .sub-title span {
  font-size: 14px;
  font-weight: bold;
  color: #515151;
}
.box1 .box .heading-row .drop-down {
  font-size: 14px;
  color: #515151;
  cursor: pointer;
}
.box1 .box .heading-row .drop-down span i {
  font-size: 12px;
  color: #515151;
  margin-left: 5px;
  cursor: pointer;
}
.box1 .box .image-list {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  overflow-x: hidden;
}
.box1 .box .image-list .single-image-box {
  min-width: 65px;
  min-width: 65px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.box1 .box .image-list .single-image-box .img {
  width: 65px;
  height: 65px;
  position: relative;
  border-radius: 50%;
  background-color: var(--color-secundario);
  color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.box1 .box .image-list .single-image-box .img img {
  width: 65px;
  height: 65px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.box1 .box .image-list .single-image-box .img fa-icon {
  font-size: 1.5em;
  position: relative;
  left: 0.9em;
  top: 0.9em;
}
.box1 .box .image-list .single-image-box .lable {
  font-size: 13px;
  margin-top: 13px;
  color: #515151;
}
.box1 .box .search-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem;
  margin: 2rem 1rem;
  position: relative;
  background: #fff;
  border-radius: 30px;
}
.box1 .box .search-box .search-icon {
  margin-left: 5px;
  cursor: pointer;
}
.box1 .box .search-box .search-icon i {
  color: #b4b4b4;
}
.box1 .box .search-box .search {
  flex: 1;
  color: #515151;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.8rem;
  margin: 0 1rem;
}
.box1 .box .search-box .search::placeholder {
  color: #b4b4b4;
}
.box1 .box .search-box .end-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(
    145deg,
    var(--color-secundario),
    var(--color-secundario)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-right: 5px;
  cursor: pointer;
}
.box1 .box .search-box .end-icon div:nth-child(1) {
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  background: transparent;
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
}
.box1 .box .search-box .end-icon div:nth-child(1)::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 1px;
  background: #fff;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
}
.box1 .box .search-box .end-icon div:nth-child(2) {
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  background: transparent;
  border-radius: 50%;
  position: relative;
  margin-left: 6px;
  margin-top: 4px;
}
.box1 .box .search-box .end-icon div:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 1px;
  background: #fff;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
}
.box1 .box .gallery-section {
  /*max-width: 420px;*/
  /*max-height: 360px;*/
  background: var(--color-grey);
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  overflow-y: scroll;
  position: relative;
  flex-wrap: wrap;
  /*padding-bottom: 5rem;*/
  margin: 0 1rem;
}
.box1 .box .gallery-section::-webkit-scrollbar {
  width: 0;
}
.box1 .box .gallery-section .img-box {
  min-width: 290px;
  max-width: 290px;
  border-radius: 15px;
  margin: 10px;
  padding: 10px;
  height: 300px;
  position: relative;
  background: transparent;
  z-index: 1;
}
/*
.box1 .box .gallery-section .img-box:nth-child(4) {
  margin-top: -30px;
}
.box1 .box .gallery-section .img-box:nth-child(6) {
  margin-top: 5px;
}
.box1 .box .gallery-section .img-box:nth-child(2),
.box1 .box .gallery-section .img-box:nth-child(3),
.box1 .box .gallery-section .img-box:nth-child(6) {
  height: 125px;
}
*/
.box1 .box .gallery-section .img-box::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 50px;
  background: #515151;
  filter: blur(8px);
  z-index: -1;
}
.box1 .box .gallery-section .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.box1 .box .gallery-section .img-box .description {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.box1 .box .gallery-section .img-box .description .headring-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
}
.box1 .box .gallery-section .img-box .description .headring-row .heading {
  font-size: 14px;
}
.box1 .box .gallery-section .img-box .description .headring-row .price {
  font-size: 16px;
  font-weight: bold;
}
.box1 .box .gallery-section .img-box .description .sub-desc p {
  font-size: 12px;
  color: #fff;
  margin-top: 2px;
}
.box1 .box .gallery-section .img-box .description .reting {
  font-size: 14px;
  color: #fff;
  margin-top: 2px;
  margin-top: 5px;
}
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 15px 15px 30px 30px;
  box-shadow: 0 -0.5rem 1rem rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}
.bottom-nav i {
  font-size: 1.5rem;
  color: var(--color-secundario);
  cursor: pointer;
  transition: 0.3s ease;
}
.bottom-nav i:hover {
  transform: scale(1.4);
}

/* Box 2 style end here */

.container .box2 {
  max-width: 100%;
  width: 100%;
  padding: 0.65rem;
  background: linear-gradient(#9888c9, #cac5e4, #d4d0eb);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.box2 .box {
  position: relative;
  width: 100%;
  /*height: 100%;*/
  background: var(--color-grey);
  padding: 1rem;
  border-radius: 30px;
  padding-bottom: 1rem;
}
.box2 .box .top-image-container {
  width: 50%;
  height: 550px;
  left: 25%;
  border-radius: 30px;
  position: relative;
  margin-top: -0.65rem;
  align-items: center;
}

.box2 .box .top-image-container .icon-row {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.box2 .box .top-image-container .icon-row .icon {
  padding: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0.3rem 0.3rem 0.4rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
  color: #515151;
}
.box2 .box .top-image-container .dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.box2 .box .top-image-container .dots div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  margin-left: 8px;
  position: relative;
  cursor: pointer;
}
.box2 .box .top-image-container .dots div.active::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  background: #fff;
  opacity: 0.5;
  padding: 1px;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.box2 .box .top-image-container .dots div.active::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  background: #515151;
  opacity: 0.5;
  padding: 1px;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.carousel {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}
.carousel .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 1s ease-in-out all;
}
.carousel .slides .slide {
  min-width: 100%;
  object-fit: fill;
  object-position: top;
}
.box2 .box .content-section {
  margin-top: 2.5rem;
  padding: 0.5rem 2rem;
  background: transparent;
  position: relative;
}

.box2 .box .content-section .main-heading {
  display: flex;
  justify-content: space-between;
}
.box2 .box .content-section .main-heading .title {
  font-size: 1.6rem;
  color: #2f2f2f;
}
.box2 .box .content-section .main-heading .subtitle {
  font-size: 0.8rem;
  margin-top: 5px;
  color: #2f2f2f;
}
.box2 .box .content-section .main-heading .price {
  font-size: 1.8rem;
  color: #2f2f2f;
}
.box2 .box .content-section .color-section {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box2 .box .content-section .color-section .left {
  flex: 2;
}
.box2 .box .content-section .color-section .left .label {
  color: #2f2f2f;
  font-size: 15px;
  font-weight: 600;
}
.box2 .box .content-section .color-section .left .sizes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;

  flex-wrap: wrap;
}
.box2 .box .content-section .color-section .left .sizes .select label {
  display: flex;
  justify-content: center;
  align-items: center;

  background: #e8e8e8;
  color: #2f2f2f;
  border-radius: 5px;
  padding: 0.5rem;
  width: 40px;
  cursor: pointer;
  height: 40px;
}
.box2
  .box
  .content-section
  .color-section
  .left
  .sizes
  .select
  input[type="radio"] {
  display: none;
}
.box2
  .box
  .content-section
  .color-section
  .left
  .sizes
  .select
  input[type="radio"]:checked
  + label {
  background: var(--color-primario);
  color: #fff;
}
.box2 .box .content-section .color-section .right {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex: 1;
  flex-direction: column;
  height: 100px;
}
.box2 .box .content-section .color-section .right div {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.box2 .box .content-section .color-section .right div:nth-child(1) {
  background: #8474b5;
}
.box2 .box .content-section .color-section .right div:nth-child(2) {
  background: #397aa1;
}
.box2 .box .content-section .color-section .right div:nth-child(3) {
  background: #f39c9d;
}

.box2 .box .content-section .color-section .right div:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 1px solid #397aa1;
}

.box2 .box .content-section .description .tab {
  display: flex;
  margin-top: 15px;
}
.box2 .box .content-section .description .tab {
  display: flex;
  justify-content: space-between;
  max-width: 260px;
}
.box2 .box .content-section .description .tab a {
  font-size: 16px;
  color: #303030;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.4rem;
}
.box2 .box .content-section .description .tab a:first-child::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 3px;
  background: #2f2f2f;
  border-radius: 10px;
}
.box2 .box .content-section .description .text {
  margin-top: 0.5rem;
  color: #2f2f2f;
  font-size: 14px;
  line-height: 1.6rem;
}
.box2 .box .content-section .add-to-catr-btn {
  margin-top: 1.5rem;
}
.box2 .box .content-section .add-to-catr-btn .btn {
  width: 100%;
  padding: 1rem 0;
  font-size: 20px;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 14px;
  background: var(--color-secundario);
  cursor: pointer;
}
.box2 .box .content-section .add-to-catr-btn .btn span {
  margin-left: 1.5rem;
}

@media (max-width: 550px) {
  .box1 .box .gallery-section {
    max-width: 420px;
    /*max-height: 350px;*/
    margin-top: 20px;
    display: flex;
    justify-content: center;
    overflow-y: scroll;
    position: relative;
    flex-wrap: wrap;
    padding-bottom: 5rem;
    margin: 0 1rem;
  }
  .box1 .box .gallery-section .img-box {
    max-width: 100%;
    border-radius: 15px;
    margin: 10px;
    height: 300px;
    position: relative;
  }

  .box2 .box .top-image-container {
    width: 100%;
    left: auto;
  }
}
@media (max-width: 380px) {
  .box1 .box .gallery-section {
    max-width: 420px;
    min-height: 300px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    overflow-y: scroll;
    position: relative;
    flex-wrap: wrap;
    padding-bottom: 5rem;
    margin: 0 1rem;
  }
  .box1 .box .gallery-section .img-box {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    margin: 10px;
    height: 300px;
    position: relative;
  }

  .box2 .box .top-image-container {
    width: 100%;
    left: auto;
  }
}
