:root {
  --background-color: #f6f9fb;
  --primary-color: #007584;
  --secondary-color: #339ca8;
  --accent-color: #b68300;

  --text-color-dark: black;
  --text-color-light: white;

  --smaller-font-size: 1rem;
  --small-font-size: 1.2rem;
  --normal-font-size: 1.6rem;
  --large-font-size: 2rem;

  --heading-subtitle-font-size: 1.4rem;
  --heading-title-font-size: 2.4rem;

  --img-border-radius: 0.3rem;
  --btn-border-radius: 0.3rem;
  --card-border-radius: 0.3rem;

  --primary-font-family: "Montserrat", sans-serif;

  /* Transition */
  --transition-time: 0.4s;
}

/* General */

html {
  font-size: 12px;
}

body {
  background-color: var(--background-color);
  display: block !important;
}

hr{
  opacity: .1;
}

.pointer {
  cursor: pointer;
}

.mobile {
  display: none;
}

.tab {
  display: none;
}

.section-spacing {
  padding: 2rem 0 2rem 0;
}

.section-spacing-top {
  padding: 2rem 0 2rem 0;
}

.dropdown {
}

.dropdown::after {
  content: "▾";
  position: absolute;
  font-size: 2rem;
  right: 8px;
  top: 45%;
  transform: translateY(-50%);
  pointer-events: none;
}

.card {
  background-color: var(--background-color);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px 0px rgba(0, 0, 0, 0.1);
  border: 0;
  margin: 0 1rem;
  cursor: pointer;
  transition: all .5s;
}

.clickable:hover{
  opacity: .8;
  background-color: var(--secondary-color);
  color: var(--text-color-light);
  transition: all .5s;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.53;
  z-index: 9999;
  display: block;
}


.star{
  color: #cc9d00
}

/* .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 3rem;
  border-radius: 5px;
  z-index: 10000;
  width: 40rem;
  max-height: 95%;
  overflow-y: auto;
} */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.53;
  z-index: 9999;
  display: block;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
      transform: rotate(360deg);
  }
}

/* .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 3rem;
  border-radius: 5px;
  z-index: 10000;
  width: 40rem;
  max-height: 95%;
  overflow-y: auto;
} */

/* General */

/* Transition */
.slide-enter-active,
.slide-leave-active {
  transition: max-height 0.4s ease;
  overflow: hidden;
}

.slide-enter-from,
.slide-leave-to {
  max-height: 0;
  opacity: 0;
}

.slide-enter-to,
.slide-leave-from {
  max-height: 200px;
  /* adjust to max height of your content */
  opacity: 1;
}

/* Transition */

.overlay {
  position: fixed;
  inset: 0px;
  background-color: rgba(46, 49, 55, 0.7);
  z-index: 9999;
  display: block;
}

.overlay-content {
  z-index: 9999;
  position: fixed;
  display: flex;
  top: 0;
  bottom: 0;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  pointer-events: none;

  .content {
    pointer-events: auto;
    background-color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    max-width: 40rem;
    max-height: 95%;
    overflow-y: auto;

    hr {
      margin: 1rem -2rem;
    }
  }
}

/* Text Attributes */
a {
  color: var(--text-color-dark);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

.text {
  font-family: var(--primary-font-family);
  font-size: var(--normal-font-size);
}

.text.small {
  font-size: var(--small-font-size);
}

.text.smaller {
  font-size: var(--smaller-font-size);
}

.text.large {
  font-size: var(--large-font-size);
  font-weight: bold;
}

.text.title {
  color: var(--primary-color);
  font-size: var(--heading-title-font-size);
  font-weight: bold;
}

.text.subtitle {
  font-size: var(--heading-subtitle-font-size);
  /* color: var(--accent-color); */
  border-radius: 10rem;
  display: inline-block;
}

.text-white {
  color: var(--text-color-light);
}

.text-dark {
  color: var(--text-color-dark);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-accent {
  color: var(--accent-color);
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.justify {
  text-align: justify;
}

.lh-1 {
  min-height: 1lh;
}

.lh-2 {
  min-height: 2lh;
}

.lh-3 {
  min-height: 3lh;
}

/* Text Attributes */

/* Button Attributes */
.button-main {
  display: inline-block;
  border-radius: 0.4rem;
  padding: 1rem;
  font-size: var(--normal-font-size);
  background-color: var(--primary-color);
  color: var(--text-color-light);
  transition: all 0.5s;
  border: 0;
}

.button-main:hover {
  cursor: pointer;
  background-color: var(--secondary-color);
  color: var(--text-color-light);
  /* border: #333 solid 1px; */
  transition: all 0.5s;
}

.button-main.red {
  background-color: red !important;
  color: var(--primary-color);
  border: 1px solid red;
}

.button-main.red:hover {
  background-color: white !important;
  color: red !important;
  border: 1px solid red;
}

.button-main.alert {
  width: 10rem;
  margin: 1rem 0.5rem;
}

.button-main.alert:hover {
  background-image: none !important;
  width: 10rem;
  margin: 1rem 0.5rem;
}

/* Image Attributes */
img {
  width: 100%;
  object-fit: cover;
}

.img-wide-xl {
  aspect-ratio: 3/1;
}

.img-wide-l {
  aspect-ratio: 16/9;
}

.img-wide {
  aspect-ratio: 3/2;
}

.img-square{
  aspect-ratio: 1/1;
}

.img-rounded {
  border-radius: 0.2rem;
}

/* Image Attributes */

/* Custom Carousel Attributes */
.carousel__pagination {
  bottom: -20px !important;
  padding: 0.4rem !important;
  border-radius: 1rem;
}

.carousel__pagination-button {
  background-color: lightgray;
  border-radius: 1rem !important;
  width: 10px !important;
}

.carousel__pagination-button:hover {
  background-color: var(--accent-color);
}

.carousel__pagination-button--active {
  background-color: var(--accent-color) !important;
}

.carousel__icon {
  color: var(--accent-color);
}

/* Custom Carousel Attributes */

/* Form  */
.search-container {
  position: relative;
  width: 100%;
}

.search-container .search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  /* Allows user to click through icon */
  color: var(--primary-color);
  font-size: 18px;
}

.search-container input {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(211, 211, 211, 0.443);
  border-radius: 100rem;
  font-size: 16px;
}

input:focus-visible {
  outline: none;
  border: 2px solid var(--accent-color);
}

.search-recommendation {
  position: absolute;
  width: 100%;
  background-color: white;
  border-radius: 0.4rem;
  box-shadow: 0 -4px 6px 0px rgba(0, 0, 0, 0.1);
  margin-top: 0.1rem;
}

.search-recommendation .pointer {
  padding: 1rem;
  border-radius: 0.4rem;
}

.search-recommendation .pointer:hover {
  background-color: wheat;
}

.wide-form {
  padding: 1rem;
  font-size: var(--normal-font-size);
  border: 1px solid;
}

.address-form {
  width: 100%;
  min-height: 3lh;
  overflow: hidden;
  border: 1px solid;
}

.form-disabled {
  background-color: var(--background-color);
}

.search-recommendation {
  position: absolute;
  width: 100%;
  background-color: white;
  border-radius: 0.4rem;
  box-shadow: 0 -4px 6px 0px rgba(0, 0, 0, 0.1);
  margin-top: 0.1rem;
}

.search-recommendation .pointer {
  padding: 1rem;
  border-radius: 0.4rem;
}

.search-recommendation .pointer:hover {
  background-color: var(--accent-color);
}

/* Form  */

/* General  */
.vertical-line {
  width: 2px;
  border-left: 1px solid black;
  height: auto;
  opacity: .1;
}

.content {
  margin-top: 1rem;
}

/* General  */

/* Navbar */
.bg-nav-main {
  color: var(--text-color-light) !important;
  background-color: var(--background-color);
  box-shadow: 0 4px 6px 0px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
  gap: 1rem;
}

.active {
  color: var(--primary-color) !important;
  font-weight: bold;
}

.navbar-nav a:hover {
  color: var(--primary-color);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}

.nav-left {
  display: flex;
  justify-content: space-between;
}

.action-icons a {
  color: var(--text-color-dark);
  font-size: var(--normal-font-size);
}

.action-icons a:hover {
  color: var(--primary-color);
}

/* Navbar */
/* Categories */
.category-img-wrapper {
  /* aspect-ratio: 1 / 1; */
  border-radius: .5rem;
  border: 1px solid var(--accent-color);
  padding: 2rem;
  display: flex;
  justify-content: start;
  align-items: center;
}
.category-img {
  aspect-ratio: 1/1;
  object-fit: contain;
  max-width: 20rem;
  margin: 1rem;
  width: 25%;
}

/* Categories */

/* Top Products */
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  border-radius: 1rem;
  cursor: pointer;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.product-img {
  flex: 0 0 auto;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

.product-card-body {
  flex: 1 1 auto;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.product-card-body .product-name {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .price {
  display: inline-block;
  width: fit-content !important;
  margin-top: 0.5rem;
  padding: 0.2rem 1rem;
  background-color: var(--accent-color);
  color: white;
  border-radius: 0.4rem;
}

.ratings {
  display: inline-block;
  background-color: white;
  border-radius: 0.4rem;
  padding: 0 0.4rem;
  margin-top: 0.5rem;
}

.location-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Top Products */
/* Ads Banner */
.ads-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10rem;
  background-size: cover;
  background-position: center;
  border-radius: var(--img-border-radius);
  box-shadow: 0px 0px 0px 4000px rgba(0, 0, 0, 0.6) inset;
}

/* Ads Banner */

/* Top Shop */
.shop-img {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem 1rem 0 0;
}

/* Top Shop */

/* Shop Page */
.shop-content-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.4);
  border-radius: 0.2rem;
}

.filter-sidebar {
  /* box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.4); */
  /* width: 2px; */
  border-right: 1px solid rgba(196, 196, 196, 0.342);
}

/* Shop Page */

/* Footer */
.footer {
  margin-top: 4rem;
  padding: 4rem 0;
  background-color: var(--background-color);
  box-shadow: 0 -4px 6px 0px rgba(0, 0, 0, 0.1);
}

.footer img {
  aspect-ratio: 2/1;
  object-fit: cover;
  width: 50%;
}

.footer hr {
  width: 50%;
}

.footer ul {
  padding: 0;
  margin-top: 2rem;
}

.footer li {
  margin-top: 1rem;
  list-style: none;
}

/* Footer */

/* Auth Page */

.auth-container {
  position: relative;
  width: 850px;
  height: 550px;
  background: #fff;
  margin: 0;
  border-radius: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

form {
  width: 100%;
}

.form-box {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  color: #333;
  text-align: center;
  padding: 40px;
  z-index: 1;
  transition: 0.6s ease-in-out 1.2s, visibility 0s 1s;
}

.auth-container.active .form-box {
  right: 50%;
}

.form-box.register {
  visibility: hidden;
}

.auth-container.active .form-box.register {
  visibility: visible;
}

.input-box input {
  width: 100%;
  padding: 13px 50px 13px 20px;
  background: #eee;
  border-radius: 8px;
  border: none;
  outline: none;
  color: #333;
}

.input-box input::placeholder {
  color: #888;
  font-weight: 400;
}

/* .input-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
} */

.btn {
  width: 100%;
  height: 48px;
  background: var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
}

.social-icons a {
  display: inline-flex;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 24px;
  color: #333;
  margin: 0 8px;
}

.toggle-box {
  position: absolute;
  width: 100%;
  height: 100%;
}

.toggle-box::before {
  content: "";
  position: absolute;
  left: -250%;
  width: 300%;
  height: 100%;
  background: var(--secondary-color);
  border-radius: 150px;
  z-index: 2;
  transition: 1.8s ease-in-out;
}

.auth-container.active {
  font-weight: normal;

  .toggle-box::before {
    left: 50%;
  }
}

.toggle-panel {
  position: absolute;
  width: 50%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: 0.6s ease-in-out;
}

.toggle-panel.toggle-left {
  left: 0;
  transition-delay: 1.2s;
}

.auth-container.active .toggle-panel.toggle-left {
  left: -50%;
  transition-delay: 0.6s;
}

.toggle-panel.toggle-right {
  right: -50%;
  transition-delay: 0.6s;
}

.auth-container.active .toggle-panel.toggle-right {
  right: 0;
  transition-delay: 1.2s;
}

.toggle-panel .btn {
  width: 160px;
  height: 46px;
  background: transparent;
  border: 2px solid #fff;
  box-shadow: none;
}

/* Auth Page */

/* Cart Page */

#cartPage {
  hr {
    margin: 1rem -2rem;
  }

  input[type="checkbox"] {
    cursor: pointer;
    width: 30px;
    height: 30px;
  }
}

.qty-input {
  background: none;
  border: none;
  width: 4ch;
  text-align: center;
  appearance: none;
  -moz-appearance: textfield;
}

.qty-input:focus {
  border: none;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-card,
.order-summary {
  background-color: #aaa;
  border-radius: 1.5rem;
  padding: 2rem;

  img {
    border-radius: 1rem;
  }

  i {
    cursor: pointer;
  }

  i:hover {
    color: red;
    transition: all 0.5s;
  }
}

.qty-box {
  border: 1px solid black;
  border-radius: 4px;
  padding: 0.3rem;

  svg:hover {
    color: var(--secondary-color);
    cursor: pointer;
  }
}

.disabled {
  opacity: 0.3 !important;
  pointer-events: none;
}

.slide-fade-enter-active {
  animation: slideIn 0.3s ease-in forwards;
}

.slide-fade-leave-active {
  animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.promo-container {
  background-color: #aaa;
  border-radius: 1.5rem;
  padding: 2rem;
}

.form-container {
  display: flex;
  width: 100%;

  input {
    flex-grow: 1;
    padding: 1rem;
    font-size: var(--normal-font-size);
    border: 2px solid #333;
    border-radius: 10px 0 0 10px;
    color: #666;
  }

  input:focus {
    border: none;
  }

  button {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 1rem 2rem;
    font-size: var(--normal-font-size);
    cursor: pointer;
  }

  button:hover {
    background-color: var(--text-color-dark);
    transition: all 0.5s;
  }
}

/* Cart Page */

/* Checkout Page */

#checkoutPage {
  .shipping-information,
  .shipping-options,
  .payment-methods,
  .order-summary {
    background-color: #aaa;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

.custom-input-form {
  border: 0;
  padding: 1rem;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 2px 0px #c9c9c9;
}

.custom-textarea-form {
  border: 0;
  padding: 1rem;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 2px 0px #c9c9c9;
  appearance: none;
}

#shippingOption,
#paymentOption {
  .customRadio .custom-radio {
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
  }
}

.customRadio > div,
.customRadio > label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.customRadio > div + div,
.customRadio > label + label {
  margin-block-start: 1rem;
}

.customRadio label,
.customRadio label .text {
  cursor: pointer;
  color: #aaa;
  transition: color 150ms ease-in-out;
}

#shippingOption,
#paymentOption {
  .custom-radio {
    cursor: pointer;
  }

  input[type="radio"] {
    appearance: none;
    outline: none;
    width: 1.5rem;
    height: 1.5rem;
    aspect-ratio: 1;
    padding: 0.25rem;
    background: transparent;
    border: 1px solid #aaa;
    border-radius: 50%;
    display: grid;
    place-content: center;
    cursor: pointer;
    position: relative;
  }

  input[type="radio"]::after {
    content: "";
    position: absolute;
    inset: 0.25rem;
    opacity: 0;
    scale: 0;
    transition: opacity 150ms ease-in-out, scale 150ms ease-in-out;
    background-color: var(--text-color-dark);
    border-radius: inherit;
  }

  .custom-radio:hover .text,
  .custom-radio:hover input[type="radio"] {
    color: var(--text-color-dark);
    border-color: var(--text-color-dark);
  }

  .custom-radio:hover input[type="radio"]::after {
    opacity: 1;
    scale: 1;
    background-color: var(--text-color-dark);
  }

  input[type="radio"]:checked + div .text {
    color: var(--text-color-dark);
  }

  input[type="radio"]:checked {
    border-color: var(--text-color-dark);
  }

  input[type="radio"]:checked::after {
    opacity: 1;
    scale: 1;
  }

  label:hover,
  input[type="radio"]:focus-visible,
  input[type="radio"]:focus-visible + label,
  input[type="radio"]:hover,
  input[type="radio"]:hover + label {
    color: var(--text-color-dark);
    border-color: var(--text-color-dark);
  }

  input[type="radio"]:focus-visible::after,
  input[type="radio"]:hover::after {
    opacity: 1;
    scale: 1;
    background-color: var(--text-color-dark);
  }

  input[type="radio"]:checked + label:not(:hover),
  input[type="radio"]:checked:not(:hover) {
    color: var(--text-color-dark);
    border-color: var(--text-color-dark);
  }

  input[type="radio"]:checked::after {
    opacity: 1;
    scale: 1;
  }
}

.form-select {
  padding: 1rem;
}

/* Checkout Page */

/* Join Us Page */

#joinUsPage {
  .section-padding {
    padding: 4rem 0;
  }

  .page-header {
    text-align: center;
  }

  .register-form {
    form {
      padding: 3rem;
      border-radius: 1rem;
      /* background-color: #aaa; */
      box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    }
  }

  .contact-support {
    .contact-left {
      padding-right: 2rem;
    }

    form {
      padding: 1.5rem;
      border-radius: 1rem;
      box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    }

    .button-main {
      padding: 0.5rem;
    }
  }
}

.faq-card {
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--secondary-color);
  box-shadow: 3px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

/* Join Us Page */

/* Profile Page */
.profile-img {
  border-radius: 100rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  width: 100px;
}

.tabs {
  display: flex;
  justify-content: space-between;
  margin: 4rem 0;
}

.isotope-tab{
  color: grey ;
  opacity: .5;
  cursor: pointer;
  transition: all .5s;
}

.isotope-tab:hover{
  letter-spacing: .25rem;
  transition: all .5s;
}

.isotope-tab.active{
  opacity: 1;
}

.isotope-tab-content{
  transition: all .5s;
}

.tab-item {
  margin-top: 1rem;
  padding-bottom: 1.6rem;
  text-align: center;
}

.tab-count {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color-light);
  background: var(--accent-color);
  border-radius: 100rem;
  width: 24px;
  height: 24px;
}

.active-tab {
  border-bottom: 1px solid black;
}

.product-card-long {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  border-radius: 1rem;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.product-long-img {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 1rem;
}

/* Profile Page */

/* Product Detail Page */

.main-swiper,
.thumbs-swiper {
  img {
    border-radius: 1rem;
    aspect-ratio: 1/1;
  }
}

.product-variant {
  .btn {
    background: #aaa;
    padding: 0.5rem 4rem;
    width: auto;
    height: auto;
    font-weight: normal;
  }
}

.v-line {
  border-left: 2px solid black;
  height: 100%;
}

.product-detail {
  .cta {
    .fa-cart-plus,
    .fa-heart {
      font-size: 3.5rem;
      cursor: pointer;
    }
  }
}

.fa-heart.active {
  color: red !important;
}

.fa-cart-plus:hover,
.fa-heart:hover {
  color: red;
  transition: all 0.5s;
}

.fa-heart.active:hover {
  color: black !important;
  transition: all 0.5s;
}

.product-review-card {
  padding: 2rem;
  background-color: #aaa;
  border-radius: 0.5rem;
}

.user-review-card {
  padding: 1.5rem 2rem;
  background-color: white;
  border-radius: 1rem;

  .review-star {
    gap: 0.4rem;
    color: #aaa;
  }

  .review-image {
    gap: 1.5rem;
  }

  .active {
    color: black !important;
  }

  img {
    width: 10rem;
    border-radius: 0.5rem;
  }
}

/* Product Detail Page */
