* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
}
body:has(.modal.show.loaded) {
  overflow: hidden;
}

.catalog-container {
  text-align: center;
  padding: 0 20px;
}

.catalog-container h1 {
  color: #547AFF;
  font-weight: 800;
  font-size: 64px;
  padding-bottom: 12px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .catalog-container h1 {
    font-size: 40px;
  }
}

.catalog-container p {
  font-weight: 400;
}

.head-para {
  padding-bottom: 40px;
}

.options {
  display: flex;
}

.options div {
  border-bottom: 3px solid rgba(2, 22, 58, 0.23);
  padding-inline: 20px;
  white-space: nowrap;
}

.categories {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
  position: relative;
}
@media (max-width: 768px) {
  .categories {
    display: none;
  }
}

.categories div {
  cursor: pointer;
  color: rgba(2, 22, 58, 0.5);
  font-weight: 500;
  padding-bottom: 10px;
}
.categories div.active-category {
  border-bottom: 3px solid #548EFF !important;
  color: rgb(2, 22, 58);
  font-weight: 700;
}

.product-box-container {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1024px) {
  .product-box-container {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 768px) {
  .product-box-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 430px) {
  .product-box-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-box {
  cursor: pointer;
}
.product-box p {
  transition: 0.3s ease-in-out;
}
.product-box:hover p {
  color: #547AFF;
}

.product-img-box {
  border-radius: 24px;
  background-color: white;
}

.product-img-box img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
}

.product-box p {
  font-weight: 500;
  color: #02163A;
  padding-top: 16px;
  line-height: 24px;
}

.modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.49);
}
.modal.show {
  display: flex;
}

.modal-dialog {
  max-width: 1042px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 32px;
  background-color: white;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.1490196078);
}
@media (max-width: 430px) {
  .modal-dialog {
    grid-template-columns: 1fr;
  }
}

.left {
  padding: 10px;
}
.left img {
  width: 100%;
  height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.right {
  padding: 24px;
  padding-left: 0;
  padding-bottom: 40px;
  max-height: 70vh;
  overflow: auto;
}
@media (max-width: 430px) {
  .right {
    padding: 20px;
  }
}

.right h3 {
  color: #02163A;
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  padding-bottom: 16px;
  padding-top: 56px;
}

.right p {
  color: #02163A;
  font-weight: 400;
  line-height: 24px;
}

.para-adjust {
  padding-bottom: 20px;
}

.padding-none {
  padding-top: 0px !important;
}

.circle {
  height: 50px;
  width: 50px;
  border-radius: 64px;
  border: 1px solid black;
  position: relative;
}

.side-bar {
  height: 417px;
  width: 12px;
  border-radius: 8px;
  background-color: #D6D6D6;
  margin-left: 28px;
}

.side-bar-radio {
  height: 238px;
  background-color: #B0B0B0;
  border-radius: 8px;
}

.flex {
  display: flex;
  gap: 24px;
}

.label {
  font-weight: 700;
  margin-top: 16px;
}

.circle-color-1 {
  background-color: #02163A;
}

.circle-color-2 {
  background-color: #9E9E94;
}

.circle-color-3 {
  background-color: white;
}

.circle-padding {
  padding-top: 4px;
  flex-wrap: wrap;
}

.circle .checkmark {
  position: absolute;
  left: 20px;
  top: 15px;
  width: 10px;
  height: 16px;
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.close-icon {
  padding-top: 24px;
  cursor: pointer;
  padding-left: 24px;
  padding-bottom: 24px;
  position: absolute;
  top: 0px;
  right: 24px;
}

[v-cloak] {
  display: none;
}

.size {
  border: 1px solid #eaeaea;
  padding: 5px 10px;
  border-radius: 4px;
}

.cat-option {
  position: relative;
  padding: 10px 15px;
  cursor: pointer;
}
.cat-option .sub-category {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  padding: 0;
  border-radius: 8px; /* Rounded corners */
}
.cat-option .sub-category .sub-sub-category {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  position: absolute;
  left: 100%;
  top: 0%;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  padding: 0;
  border-radius: 8px;
}
.cat-option:hover .sub-category {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cat-option .sub-cat-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #ccc !important;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}
.cat-option .sub-cat-item:last-child {
  border-bottom: none !important;
}
.cat-option .sub-cat-item .sub-sub-cat-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cat-option .sub-cat-item .sub-sub-cat-item:last-child {
  border-bottom: none !important;
}
.cat-option .sub-cat-item .sub-sub-cat-item:hover {
  background-color: #f0f0f0;
  color: #007bff;
}
.cat-option .sub-cat-item:hover {
  background-color: #f0f0f0;
  color: #007bff;
}
.cat-option .sub-cat-item:hover .sub-sub-category {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.catalogBody {
  overflow: hidden;
}

#search-box {
  width: 150px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: white;
  background-image: url(../assets/searchicon.png);
  background-position: 10px 10px;
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
  border: 3px solid rgba(2, 22, 58, 0.23);
  border-radius: 50px;
  outline: 0;
}
#search-box:focus {
  border: 3px solid #547aff;
}/*# sourceMappingURL=catalog.css.map */