.shop-body {
  background: #000;
  color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
}

.shop-page {
  position: relative;
  width: 1920px;
  flex-shrink: 0;
  transform-origin: top center;
}

/* ---------- logo ---------- */

.shop-logo {
  position: fixed;
  left: 50%;
  margin-left: -50px;
  top: 50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
}

.shop-logo:hover {
  transform: scale(1.08);
}

.shop-menu-wrapper {
  position: fixed;
  z-index: 10;
  transform-origin: top left;
}

.shop-menu-wrapper .menu-btn {
  left: 0;
  top: 0;
}

.shop-body .menu-drawer {
  position: fixed;
  z-index: 100;
  transform-origin: top left;
}

/* ---------- header ---------- */

.shop-header {
  position: absolute;
  left: 50px;
  top: 190px;
  width: 587px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.shop-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  text-transform: uppercase;
  color: #fff;
  user-select: none;
}

.shop-header__desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
}

/* ---------- product ---------- */

.shop-product {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.shop-product--large {
  width: 895px;
  height: 715px;
}

.shop-product--small {
  width: 587px;
  height: 607px;
}

.shop-product--right {
  position: absolute;
  left: 975px;
  top: 190px;
}

.shop-product__img {
  position: relative;
  overflow: hidden;
  background: #000;
}

.shop-product--large .shop-product__img {
  width: 895px;
  height: 600px;
}

.shop-product--small .shop-product__img {
  width: 587px;
  height: 500px;
}

.shop-product__picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-product__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.shop-product--large .shop-product__info {
  width: 895px;
  height: 40px;
  margin-top: 40px;
}

.shop-product--small .shop-product__info {
  width: 587px;
  height: 40px;
  margin-top: 32px;
}

.shop-product__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #fff;
  white-space: nowrap;
}

.shop-product__cart {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  cursor: pointer;
}

.shop-product__cart::before,
.shop-product__cart::after {
  content: '';
  position: absolute;
  background: #000;
}

.shop-product__cart::before {
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.shop-product__cart::after {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.shop-product__line {
  width: 100%;
  height: 0;
  border-bottom: 2px solid #fff;
  flex-shrink: 0;
}

.shop-product--large .shop-product__line {
  margin-top: 10px;
}

.shop-product--small .shop-product__line {
  margin-top: 10px;
}

.shop-product__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #fff;
}

.shop-product--large .shop-product__price {
  margin-top: 11px;
}

.shop-product--small .shop-product__price {
  margin-top: 11px;
}

/* ---------- rows ---------- */

.shop-row {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.shop-row--three {
  left: 50px;
  top: 1105px;
  width: 1821px;
  height: 607px;
}

.shop-row--two {
  left: 50px;
  top: 1912px;
  width: 1820px;
  height: 715px;
}

/* ---------- nav button ---------- */

.shop .menu-btn {
  left: 1736px;
  top: 2694px;
}

/* ---------- entry animation ---------- */

@keyframes shopFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shop-header {
  animation: shopFadeUp 0.7s ease both;
}

.shop-product--right {
  animation: shopFadeUp 0.7s 0.1s ease both;
}

.shop-row--three {
  animation: shopFadeUp 0.7s 0.2s ease both;
}

.shop-row--two {
  animation: shopFadeUp 0.7s 0.3s ease both;
}

.shop .menu-btn {
  animation: shopFadeUp 0.5s 0.4s ease both;
}

/* ---------- order modal ---------- */

.shop-order-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.shop-order-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.shop-order-modal__backdrop {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3);
}

.shop-order-modal__form {
  position: relative;
  width: 700px;
  height: 590px;
  background: #fff;
  z-index: 2;
}

.shop-order-modal__header {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 620px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.shop-order-modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  text-transform: uppercase;
  color: #000;
}

.shop-order-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.shop-order-modal__close:hover {
  opacity: 0.8;
}

.shop-order-modal__close::before,
.shop-order-modal__close::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
}

.shop-order-modal__close::before {
  transform: rotate(45deg);
}

.shop-order-modal__close::after {
  transform: rotate(-45deg);
}

.shop-order-modal__subtitle {
  position: absolute;
  left: 40px;
  top: 126px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
}

.shop-order-modal__fields {
  position: absolute;
  left: 40px;
  top: 170px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 620px;
}

.shop-order-modal__field {
  display: flex;
  align-items: center;
  width: 620px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50px;
  background: #fff;
  overflow: hidden;
}

.shop-order-modal__field-label {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 24px;
  background: #fff;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
}

.shop-order-modal__field-input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding: 0 24px 0 0;
}

.shop-order-modal__submit {
  position: absolute;
  left: 40px;
  top: 495px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 620px;
  height: 50px;
  background: #000;
  border: none;
  border-radius: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.shop-order-modal__submit:hover {
  opacity: 0.85;
}

.shop-order-modal__form--hidden {
  display: none;
}

/* ---------- order success ---------- */

.shop-order-success {
  position: relative;
  width: 550px;
  height: 158px;
  background: #fff;
  z-index: 2;
  display: none;
}

.shop-order-success--visible {
  display: block;
}

.shop-order-success__header {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 490px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.shop-order-success__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  text-transform: uppercase;
  color: #000;
}

.shop-order-success__text {
  position: absolute;
  left: 30px;
  top: 97px;
  width: 490px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
}
