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

img {
  display: block;
}

ul {
  list-style: none;
  display: flex;
}

body, button {
  font-family: "Kumbh";
}

a {
  display: block;
  text-decoration: none;
}

.hidden {
  display: none !important;
}

:root {
  --orange: hsl(26, 100%, 55%);
  --pale-orange: hsl(25, 100%, 94%);
  --very-dark-blue: hsl(220, 13%, 13%);
  --dark-grayish-blue: hsl(219, 9%, 45%);
  --grayish-blue: hsl(220, 14%, 75%);
  --light-grayish-blue: hsl(223, 64%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --max-width: 1200px;
  --header-height: 100px;
}
@media only screen and (max-width: 450px) {
  :root {
    --header-height: 80px;
  }
}

@font-face {
  font-family: "Kumbh";
  src: url(./fonts/Kumbh_Sans/KumbhSans-VariableFont_YOPQ\,wght.ttf);
}
.header {
  padding: 0 20px;
}
@media only screen and (max-width: 450px) {
  .header {
    padding: 0;
  }
}
.header__container {
  max-width: var(--max-width);
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 60px;
  margin-inline: auto;
  border-bottom: 1px solid var(--grayish-blue);
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .header__container {
    gap: 30px;
  }
}
@media only screen and (max-width: 450px) {
  .header__container {
    padding: 0 20px;
  }
}
.header__humburger {
  cursor: pointer;
}
@media only screen and (min-width: 1000px) {
  .header__humburger {
    display: none;
  }
}
.header__humburger:has(input:checked) ~ label {
  display: block;
}
.header__humburger:has(input:checked) ~ nav {
  left: 0;
}
.header__fullscreen {
  background-color: hsla(0, 0%, 0%, 0.4);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 666;
}
@media only screen and (min-width: 1000px) {
  .header__fullscreen {
    display: none !important;
  }
}
@media only screen and (max-width: 1000px) {
  .header__nav {
    position: fixed;
    left: -500px;
    top: 0;
    height: 100vh;
    width: 260px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    z-index: 999;
    transition: left 0.3s ease-in-out;
  }
}
.header__closeCont {
  height: var(--header-height);
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1000px) {
  .header__closeCont {
    display: none !important;
  }
}
.header__close {
  width: 18px;
  cursor: pointer;
}
@media only screen and (min-width: 1000px) {
  .header__close {
    display: none;
  }
}
.header__list {
  gap: 20px 30px;
}
@media only screen and (max-width: 1000px) {
  .header__list {
    flex-direction: column;
  }
}
.header__item {
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 1000px) {
  .header__item {
    height: var(--header-height);
  }
  .header__item:has(a:hover)::after {
    content: "";
    background-color: var(--orange);
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.header__link {
  color: var(--dark-grayish-blue);
}
@media only screen and (max-width: 1000px) {
  .header__link {
    color: var(--very-dark-blue);
    font-weight: 700;
  }
}
.header__link:hover {
  color: var(--very-dark-blue);
}
.header__mostRight {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 1000px) {
  .header__mostRight {
    gap: 20px;
  }
}
.header__cartLabel {
  position: relative;
}
.header__cartLabel.has-order::after {
  content: attr(data-number);
  font-weight: 700;
  font-size: 0.85rem;
  background-color: var(--orange);
  color: var(--white);
  width: 25px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  border-radius: 9px;
}
.header__cartLabel:has(input:checked) ~ div {
  display: flex;
}
.header__cart {
  cursor: pointer;
}
.header__cartBox {
  background-color: var(--white);
  width: 360px;
  min-height: 210px;
  position: absolute;
  top: calc(100% + 20px);
  right: 20px;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0px 5px 15px -3px hsla(0, 0%, 0%, 0.3);
  display: none;
  z-index: 333;
}
@media only screen and (max-width: 450px) {
  .header__cartBox {
    width: calc(100% - 40px);
  }
}
.header__cartBox__title {
  font-size: 1.2rem;
  height: 55px;
  display: flex;
  align-items: center;
  padding-left: 18px;
  border-bottom: 1px solid var(--grayish-blue);
}
.header__cartBox__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.header__cartBox__product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header__cartBox__productImg {
  width: 50px;
  border-radius: 6px;
}
.header__cartBox__desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--dark-grayish-blue);
  font-weight: 500;
}
.header__cartBox__desc strong {
  color: var(--very-dark-blue);
}
.header__cartBox__checkout {
  border-radius: 10px;
  color: var(--very-dark-blue);
  border: none;
  background-color: var(--orange);
  font-weight: 700;
  height: 45px;
  font-size: 1rem;
  cursor: pointer;
}
.header__cartBox__empty {
  font-weight: 700;
  color: var(--dark-grayish-blue);
  margin-inline: auto;
}
.header__profile {
  width: 45px;
  border-radius: 50%;
}
@media only screen and (max-width: 450px) {
  .header__profile {
    width: 35px;
  }
}
.header__profile:hover {
  outline: 2px solid var(--orange);
}

.main {
  margin: 70px 0;
  padding: 0 20px;
}
@media only screen and (max-width: 450px) {
  .main {
    padding: 0;
    margin: 0;
    margin-bottom: 80px;
  }
}
.main__container {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-inline: auto;
}
@media only screen and (max-width: 1050px) {
  .main__container {
    gap: 30px 40px;
  }
}
@media only screen and (max-width: 800px) {
  .main__container {
    grid-template-columns: minmax(300px, 450px);
    justify-content: center;
  }
}
.main__fullscreenImage {
  height: 100vh;
  width: 100%;
  background-color: hsla(0, 0%, 0%, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3333;
}
.main__firstSection {
  display: flex;
  justify-content: center;
}
.main__firstSection__container {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.main__firstSection__container.fullscreen > img {
  display: block;
}
.main__firstSection__container > img {
  display: none;
}
.main__firstSection__close {
  align-self: flex-end;
  margin-bottom: -10px;
  margin-right: 10px;
  cursor: pointer;
}
.main__firstSection__mainImg {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 450px) {
  .main__firstSection__mainImg {
    border-radius: 0;
    width: 100%;
  }
}
.main__firstSection__mainImg:hover div {
  opacity: 1;
}
.main__firstSection__navigator {
  background-color: var(--light-grayish-blue);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (min-width: 800px) {
  .main__firstSection__navigator {
    opacity: 0;
  }
}
.main__firstSection__navigator:first-child {
  left: 10px;
}
.main__firstSection__navigator:first-child img {
  width: 8px;
  margin-right: 2px;
}
.main__firstSection__navigator:last-child {
  right: 10px;
}
.main__firstSection__navigator:last-child img {
  width: 8px;
  transform: rotate(180deg);
  margin-left: 2px;
}
.main__firstSection__fullImg {
  width: 100%;
}
.main__firstSection__imgCont {
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 800px) {
  .main__firstSection__imgCont {
    display: none;
  }
}
.main__firstSection__imgFigure {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.main__firstSection__imgFigure img {
  width: 100%;
}
.main__firstSection__imgFigure.active {
  outline: 2.5px solid var(--orange);
}
.main__firstSection__imgFigure.active img {
  opacity: 0.3;
}
.main__firstSection__imgFigure:hover img {
  opacity: 0.4;
}
.main__secondSection {
  display: flex;
  justify-content: center;
}
.main__secondSection__container {
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media only screen and (max-width: 450px) {
  .main__secondSection__container {
    padding: 0 20px;
  }
}
.main__secondSection__brand {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-grayish-blue);
  text-transform: uppercase;
  letter-spacing: 5px;
}
.main__secondSection__title {
  color: var(--very-dark-blue);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
.main__secondSection__desc {
  color: var(--dark-grayish-blue);
  line-height: 1.4;
}
.main__secondSection__priceGrp {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main__secondSection__price {
  font-size: 1.8rem;
}
.main__secondSection__sale {
  font-size: 0.9rem;
  font-weight: 600;
  background-color: var(--black);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
}
.main__secondSection__delete {
  font-weight: 700;
  color: var(--dark-grayish-blue);
  margin-top: 8px;
  -webkit-text-decoration: 1px var(--dark-grayish-blue) line-through;
          text-decoration: 1px var(--dark-grayish-blue) line-through;
}
.main__secondSection__footer {
  width: 100%;
  display: flex;
  gap: 15px;
  margin-top: 14px;
}
@media only screen and (max-width: 800px) {
  .main__secondSection__footer {
    flex-direction: column;
  }
}
.main__secondSection__box {
  height: 45px;
  background-color: var(--light-grayish-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  border-radius: 8px;
}
.main__secondSection__indicatorBtn {
  width: 45px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.main__secondSection__indicatorBtn:hover img, .main__secondSection__indicatorBtn:focus-visible img {
  opacity: 0.5;
}
.main__secondSection__indicator {
  min-width: 60px;
  flex: 1;
  display: flex;
  justify-content: center;
}
.main__secondSection__cartBtn {
  height: 45px;
  background-color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
@media only screen and (min-width: 800px) {
  .main__secondSection__cartBtn {
    flex: 1;
  }
}
@media only screen and (max-width: 800px) {
  .main__secondSection__cartBtn {
    box-shadow: 0 10px 10px hsla(26, 100%, 55%, 0.25);
  }
}
.main__secondSection__cartBtn:hover {
  background-color: hsla(26, 100%, 55%, 0.5);
}/*# sourceMappingURL=style.css.map */