@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  box-shadow: none;
  border: none;
}

.container {
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 1rem;
  font-family: "Kumbh Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "YOPQ" 300;
  background-color: hsl(0, 0%, 100%);
}
@media screen and (min-width: 48rem) {
  .container {
    padding-block: 1rem;
  }
}
@media screen and (min-width: 70rem) {
  .container {
    padding-block: 2.5rem;
  }
}

.header-container {
  min-width: 100%;
  padding-inline: 1.5rem;
  padding-block-end: 1.5rem;
}
@media screen and (min-width: 48rem) {
  .header-container {
    border-bottom: 2px solid hsl(223, 64%, 98%);
    margin-block-end: 5rem;
  }
}
@media screen and (min-width: 70rem) {
  .header-container {
    min-width: 70rem;
    min-height: 5rem;
    border-bottom: 2px solid hsl(223, 64%, 98%);
    padding-inline: 0;
    padding-block-end: 0;
  }
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation_logo {
  max-width: 8.625rem;
}
.navigation_main-menu-container {
  min-height: 100%;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (min-width: 70rem) {
  .navigation_main-menu-container {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
.navigation_open-menu-btn {
  background-color: transparent;
  order: -1;
}
@media screen and (min-width: 70rem) {
  .navigation_open-menu-btn {
    display: none;
  }
}
.navigation_open-menu-btn img {
  vertical-align: middle;
  border-radius: 0;
}
.navigation_main-menu {
  min-width: 15rem;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  list-style: none;
  padding: 1.5rem;
  background-color: hsl(0, 0%, 100%);
  z-index: 2;
}
@media screen and (min-width: 70rem) {
  .navigation_main-menu {
    min-height: 100%;
    position: relative;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    padding: 0;
    z-index: 1;
  }
}
.navigation_main-menu li a {
  font-size: 1.05rem;
  font-weight: 700;
  color: hsl(0, 0%, 0%);
  text-decoration: none;
}
@media screen and (min-width: 70rem) {
  .navigation_main-menu li a {
    padding-block-end: 2.5rem;
    font-weight: 400;
    color: hsl(219, 9%, 45%);
  }
}
.navigation_main-menu li:hover a {
  cursor: pointer;
  color: hsl(26, 100%, 55%);
}
@media screen and (min-width: 70rem) {
  .navigation_main-menu li:hover a {
    color: hsl(0, 0%, 0%);
    border-bottom: 5px solid hsl(26, 100%, 55%);
  }
}
.navigation_main-menu--inactive {
  display: none;
}
@media screen and (min-width: 70rem) {
  .navigation_main-menu--inactive {
    display: flex;
  }
}
.navigation_close-menu {
  margin-block-end: 1.5rem;
}
@media screen and (min-width: 70rem) {
  .navigation_close-menu {
    display: none;
  }
}
.navigation_user-menu {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media screen and (min-width: 70rem) {
  .navigation_user-menu {
    align-items: center;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
}
.navigation_cart-container {
  position: relative;
}
.navigation_open-cart {
  background-color: transparent;
}
.navigation_open-cart svg {
  vertical-align: middle;
}
.navigation_open-cart:hover, .navigation_open-cart:focus, .navigation_open-cart--active {
  cursor: pointer;
}
.navigation_open-cart:hover svg path, .navigation_open-cart:focus svg path, .navigation_open-cart--active svg path {
  fill: hsl(0, 0%, 0%);
}
.navigation_cart-number {
  position: absolute;
  top: -0.1rem;
  right: -0.5rem;
  padding-inline: 0.4rem;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 2rem;
  color: hsl(0, 0%, 100%);
  background-color: hsl(26, 100%, 55%);
}
.navigation_cart-number--inactive {
  display: none;
}
.navigation_profile img {
  vertical-align: middle;
  width: 1.7rem;
  border-radius: 100%;
  border: 1px solid hsl(0, 0%, 100%);
}
@media screen and (min-width: 70rem) {
  .navigation_profile img {
    width: 3rem;
    border-width: 2px;
  }
}
.navigation_profile img:hover {
  cursor: pointer;
  border-color: hsl(26, 100%, 55%);
}

.cart {
  min-width: 95vw;
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  padding-block: 1rem;
  border-radius: 0.5rem;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 2px 20px 0 hsl(219, 9%, 45%);
  z-index: 2;
}
@media screen and (min-width: 35rem) {
  .cart {
    position: absolute;
    top: 3.5rem;
    left: -6rem;
    min-width: 23rem;
    box-shadow: 0 8px 20px 0 hsl(219, 9%, 45%);
  }
}
@media screen and (min-width: 75rem) {
  .cart {
    position: absolute;
    top: 3.5rem;
    min-width: 23rem;
    box-shadow: 0 8px 20px 0 hsl(219, 9%, 45%);
  }
}
.cart--inactive {
  display: none;
}
.cart_title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  padding-inline: 1.5rem;
  padding-block-end: 1.5rem;
  color: hsl(0, 0%, 0%);
  border-bottom: 0.4px solid hsl(220, 14%, 75%);
}
.cart_empty {
  min-height: 11rem;
  display: grid;
  place-content: center;
  font-size: 1rem;
  font-weight: 700;
  padding-inline: 1.5rem;
  color: hsl(219, 9%, 45%);
}
.cart_empty--inactive {
  display: none;
}
.cart_filled {
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 1.5rem;
  padding-block-end: 1rem;
  padding-inline: 1.5rem;
}
.cart_filled--inactive {
  display: none;
}
.cart_items-section {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.cart_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart_items-image {
  max-width: 3.5rem;
  height: 100%;
  border-radius: 0.4rem;
}
.cart_items-container {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.cart_items-name {
  font-size: 1rem;
  font-weight: 400;
  color: hsl(219, 9%, 45%);
}
.cart_items-price {
  font-size: 1rem;
  font-weight: 400;
  color: hsl(219, 9%, 45%);
}
@media screen and (min-width: 70rem) {
  .cart_items-price {
    word-spacing: 3.5px;
  }
}
.cart_items-price strong {
  font-weight: 700;
  color: hsl(0, 0%, 0%);
}
.cart_items-remove-btn {
  height: -moz-fit-content;
  height: fit-content;
  background-color: transparent;
}
.cart_items-remove-btn:hover, .cart_items-remove-btn:focus, .cart_items-remove-btn:active {
  cursor: pointer;
}
.cart_items-remove-btn:hover svg use, .cart_items-remove-btn:focus svg use, .cart_items-remove-btn:active svg use {
  fill: hsl(0, 0%, 0%);
}
.cart_checkout-btn {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Kumbh Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "YOPQ" 300;
  padding-block: 1rem;
  border-radius: 0.5rem;
  color: hsl(0, 0%, 0%);
  background-color: hsl(26, 100%, 55%);
}

.reduce-opacity {
  content: "";
  min-width: 100%;
  min-height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: hsl(0, 0%, 0%);
  opacity: 0.75;
  z-index: 1;
}
.reduce-opacity--inactive {
  display: none;
}

.main-container {
  max-width: 100%;
}
@media screen and (min-width: 48rem) {
  .main-container {
    min-width: 90%;
    padding-inline: 2rem;
  }
}
@media screen and (min-width: 70rem) {
  .main-container {
    min-width: 70rem;
    padding-inline: 3rem;
  }
}

.product {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (min-width: 48rem) {
  .product {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.product_hero-image-container {
  position: relative;
}
.product_previous-btn {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-content: center;
  border-radius: 100%;
}
@media screen and (min-width: 48rem) {
  .product_previous-btn {
    display: none;
  }
}
.product_previous-btn img {
  width: 0.6rem;
  border-radius: 100%;
  -o-object-fit: none;
     object-fit: none;
}
.product_next-btn {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-content: center;
  border-radius: 100%;
}
@media screen and (min-width: 48rem) {
  .product_next-btn {
    display: none;
  }
}
.product_next-btn img {
  width: 0.6rem;
  border-radius: 100%;
  -o-object-fit: none;
     object-fit: none;
}
.product_hero-img {
  min-width: 100%;
  max-height: 19rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 48rem) {
  .product_hero-img {
    max-width: 23rem;
    max-height: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    border-radius: 0.8rem;
    margin-block-end: 1.5rem;
  }
}
@media screen and (min-width: 70rem) {
  .product_hero-img {
    max-width: 28rem;
  }
}
.product_thumbnails {
  display: none;
}
@media screen and (min-width: 48rem) {
  .product_thumbnails {
    display: flex;
    justify-content: space-between;
  }
}
.product_thumbnail-btn {
  background: transparent;
  border-radius: 0.8rem;
}
.product_thumbnail-btn--active {
  outline: 2px solid hsl(26, 100%, 55%);
}
.product_thumbnail-image {
  max-width: 5rem;
  vertical-align: middle;
  border-radius: 0.7rem;
}
@media screen and (min-width: 70rem) {
  .product_thumbnail-image {
    max-width: 5.5rem;
  }
}
.product_thumbnail-image:hover {
  cursor: pointer;
  opacity: 0.6;
}
.product_thumbnail-image--active {
  opacity: 0.4;
}
.product_info {
  display: flex;
  flex-direction: column;
  padding-inline: 1.5rem;
  row-gap: 0.5rem;
}
@media screen and (min-width: 48rem) {
  .product_info {
    max-width: 24rem;
    row-gap: 1rem;
  }
}
@media screen and (min-width: 70rem) {
  .product_info {
    max-width: 30rem;
  }
}
.product_company {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09375rem;
  color: hsl(219, 9%, 45%);
}
.product_name {
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (min-width: 70rem) {
  .product_name {
    font-size: 2.7rem;
    line-height: 1.15;
    margin-block-end: 0.5rem;
  }
}
.product_details {
  margin-block: 0.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: hsl(219, 9%, 45%);
}
@media screen and (min-width: 70rem) {
  .product_details {
    font-size: 1rem;
    margin-block-end: 0;
  }
}
.product_price-section {
  margin-block: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 70rem) {
  .product_price-section {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1rem;
    margin-block-start: 0;
    margin-block-end: 1.5rem;
  }
}
.product_price-header {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.product_discounted-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: hsl(0, 0%, 0%);
}
@media screen and (min-width: 70rem) {
  .product_discounted-price {
    font-size: 1.9rem;
  }
}
.product_discount {
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-end;
  font-size: 1rem;
  font-weight: 700;
  padding-inline: 0.6rem;
  padding-block: 0.2rem;
  border-radius: 0.5rem;
  background-color: hsl(0, 0%, 0%);
  color: hsl(0, 0%, 100%);
}
.product_price {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(219, 9%, 45%);
  text-decoration: line-through;
}
.product_purchase-section {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-block: 1rem;
}
@media screen and (min-width: 70rem) {
  .product_purchase-section {
    flex-direction: row;
    justify-content: space-between;
    margin-block: 0;
  }
}
.product_select-quantity {
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  background-color: hsl(223, 64%, 98%);
}
@media screen and (min-width: 70rem) {
  .product_select-quantity {
    min-width: 36%;
  }
}
.product_quantity-btn {
  min-height: 100%;
  min-width: 3.5rem;
  border-radius: 0.5rem;
  background-color: transparent;
}
.product_quantity-btn svg, .product_quantity-btn img {
  vertical-align: middle;
}
.product_quantity-btn:hover, .product_quantity-btn:focus, .product_quantity-btn:active {
  cursor: pointer;
}
.product_quantity-btn:hover svg use, .product_quantity-btn:focus svg use, .product_quantity-btn:active svg use {
  fill: hsla(26, 100%, 55%, 0.8);
}
.product_quantity-text {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(0, 0%, 0%);
}
.product_add-to-cart-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: hsl(0, 0%, 0%);
  background-color: hsl(26, 100%, 55%);
  box-shadow: 0 5px 15px 0 hsla(26, 100%, 55%, 0.8);
}
@media screen and (min-width: 70rem) {
  .product_add-to-cart-btn {
    min-width: 60%;
    box-shadow: none;
  }
}
.product_add-to-cart-btn svg {
  height: 1rem;
}
.product_add-to-cart-btn svg path {
  fill: hsl(0, 0%, 0%);
}
.product_add-to-cart-btn:hover, .product_add-to-cart-btn:focus, .product_add-to-cart-btn:active {
  cursor: pointer;
  background-color: hsla(26, 100%, 55%, 0.8);
}

.lightbox {
  display: none;
}
@media screen and (min-width: 48rem) {
  .lightbox {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .lightbox--inactive {
    display: none;
  }
  .lightbox_header {
    position: relative;
  }
  .lightbox_main-image {
    max-width: 25rem;
    max-height: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    border-radius: 0.8rem;
    margin-block-end: 1.5rem;
  }
}
@media screen and (min-width: 48rem) and (min-width: 70rem) {
  .lightbox_main-image {
    max-width: 35rem;
  }
}
@media screen and (min-width: 48rem) {
  .lightbox_close {
    position: absolute;
    top: -2.5rem;
    right: 0.2rem;
    background-color: transparent;
  }
  .lightbox_close svg {
    min-width: 150%;
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .lightbox_close svg path {
    fill: hsl(0, 0%, 100%);
  }
  .lightbox_close:hover {
    cursor: pointer;
  }
  .lightbox_close:hover svg path {
    fill: hsl(26, 100%, 55%);
  }
  .lightbox_previous-btn {
    position: absolute;
    top: 50%;
    left: -1.8rem;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-content: center;
    border-radius: 100%;
  }
  .lightbox_previous-btn:hover {
    cursor: pointer;
  }
  .lightbox_previous-btn:hover svg path {
    stroke: hsl(26, 100%, 55%);
  }
  .lightbox_previous-btn svg {
    border-radius: 100%;
  }
  .lightbox_next-btn {
    position: absolute;
    top: 50%;
    right: -1.8rem;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-content: center;
    border-radius: 100%;
  }
  .lightbox_next-btn:hover {
    cursor: pointer;
  }
  .lightbox_next-btn:hover svg path {
    stroke: hsl(26, 100%, 55%);
  }
  .lightbox_next-btn svg {
    border-radius: 100%;
  }
  .lightbox_thumbnails {
    display: flex;
    justify-content: space-evenly;
  }
  .lightbox_thumbnail-btn {
    border-radius: 0.6rem;
  }
  .lightbox_thumbnail-btn--active {
    outline: 2px solid hsl(26, 100%, 55%);
  }
  .lightbox_thumbnail-image {
    max-width: 5rem;
    vertical-align: middle;
    border-radius: 0.6rem;
  }
}
@media screen and (min-width: 48rem) and (min-width: 70rem) {
  .lightbox_thumbnail-image {
    max-width: 6rem;
  }
}
@media screen and (min-width: 48rem) {
  .lightbox_thumbnail-image:hover {
    opacity: 0.6;
  }
  .lightbox_thumbnail-image--active {
    opacity: 0.4;
  }
}/*# sourceMappingURL=style.css.map */