.product-rating {
  display: none;
}

/* HERO SECTION */
section#hero {
  padding-block: 0.75rem;
}

/* CAROUSEL STYLES */
@media screen and (min-width: 768px) {
  #heroCarousel {
    display: none;
  }
}
.carousel-indicators {
  margin-bottom: -2rem;
}
.carousel-indicators [data-bs-target] {
  background-color: var(--cp-primary-color-400);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
#heroCarousel .carousel-inner {
  border-radius: var(--cp-card-border-radius);
  overflow: hidden;
}
/* END HERO CAROUSEL STYLES */

/* HERO FOR BIGGER SCREENS */
#hero-big-screen {
  display: none;
}
@media screen and (min-width: 768px) {
  section#hero {
    padding-block: 1.5rem;
  }

  #hero-big-screen {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.75rem;
  }

  #hero-big-screen img {
    border-radius: var(--cp-card-border-radius);
  }

  .hero-big-inner {
    gap: 0.75rem;
  }
}
/* END HERO FOR BIGGER SCREENS */
/* END HERO SECTION */

/* SHOP BY CATEGORY */
.shop-by-category .categories {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .shop-by-category .categories {
    gap: 3rem;
  }
}

.shop-by-category .category {
  width: 28%;
}

@media (min-width: 992px) {
  .shop-by-category .category {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .shop-by-category .category {
    width: 15%;
  }
}

.shop-by-category .category .flex-wrapper {
  justify-content: flex-start;
  text-decoration: none;
  text-align: center;
}

.shop-by-category .category .img-wrapper {
  background-color: var(--cp-primary-color-200);
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--cp-primary-color-200);
  border-radius: var(--cp-card-border-radius);
  overflow: hidden;
  box-shadow: var(--cp-shadow-sm-y) var(--cp-primary-color-200);
  transition: box-shadow 300ms ease-out;
}

.shop-by-category .category img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-by-category .category .label {
  font-size: 1.125rem;
  color: var(--cp-primary-color-400);
  font-weight: 500;
  line-height: 0.9;
}

.shop-by-category .category .flex-wrapper:hover .img-wrapper {
  box-shadow: var(--cp-shadow-sm-y) var(--cp-primary-color-400);
}
/* END SHOP BY CATEGORY */

/* SUBSCRIBE SECTION */
.subscribe-section {
  position: relative;
  background-color: var(--cp-cornsilk-color-500);
  color: white;
  padding-block: 4em;
  overflow: clip;
}

.subscribe-section h2 {
  color: var(--cp-primary-color-500);
}

.subscribe-section .input-group {
  --height: 3.5rem;
  --padding-inline: 1em;
  background-color: var(--cp-white-color);
  border-color: var(--cp-secondary-color-500);
  max-width: 500px;
  margin-inline: auto;
}

.subscribe-section .input-group:focus-within {
  box-shadow: var(--cp-shadow-sm) var(--cp-secondary-color-400);
}

.subscribe-section .input-group input {
  font-size: var(--cp-fs-500);
}
.subscribe-section .input-group button {
  background-color: var(--cp-secondary-color-500);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cp-white-color);
}
.subscribe-section .subscription-message.success p {
  color: var(--cp-secondary-color-500);
  font-size: var(--cp-fs-700);
}
/* Decorative geometric shapes */
.shape-circle,
.shape-triangle,
.shape-square {
  position: absolute;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* Circle styling */
.shape-circle {
  width: 200px;
  height: 200px;
  background: var(--cp-warning-color);
  border-radius: 50%;
  top: -5%;
  left: -5%;
}

.shape-circle::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background: var(--cp-white-color);
  border-radius: 50%;
  position: absolute;
  top: 5%;
  left: 5%;
}

/* Triangle styling */
.shape-triangle {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 120px solid var(--cp-white-color);
  bottom: 50%;
  right: 0%;
  transform: rotate(15deg);
}

/* Square styling */
.shape-square {
  width: 120px;
  height: 120px;
  background: var(--cp-warning-color);
  top: 20%;
  left: 95%;
  transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .shape-circle {
    width: 60px;
    height: 60px;
    left: 10%;
  }

  .shape-triangle {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #666;
    right: 15%;
  }

  .shape-square {
    width: 50px;
    height: 50px;
    left: 80%;
  }
}
/* END SUBSCRIBE SECTION */

/* REVIEWS/HAPPY CUSTOMERS */
.review-card-title {
  text-transform: capitalize;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (min-width: 768px) {
  .review-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5em;
  }
}
/* END REVIEWS/HAPPY CUSTOMERS */
