/* ONLINE SHOP */
.page-shop {
  color: #fff;
  background: #000;
}

.page-shop .site-header {
  height: 402px;
  border-radius: 0;
}

.page-shop .site-footer {
  margin-top: 0;
  border-radius: 0;
}

.shop-page-title {
  margin: 72px 0 0;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
}

.shop-main {
  overflow: hidden;
  background: #000;
}

.shop-content {
  position: relative;
  min-height: 600px;
  padding: 68px 30px 105px;
}

.shop-content::before {
  position: absolute;
  top: 0;
  right: 72%;
  bottom: 158px;
  left: -2px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 0 160px 0 0;
  content: "";
  pointer-events: none;
}

.shop-content::after {
  position: absolute;
  right: -2px;
  bottom: 8px;
  left: 28%;
  height: 160px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 0 0 0 160px;
  content: "";
  pointer-events: none;
}

.shop-lead {
  position: relative;
  z-index: 1;
  margin: 0 0 50px;
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}

.shop-card-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
}

.shop-card {
  display: flex;
  min-height: 305px;
  padding: 32px 35px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  background: #fff;
  border: 5px solid #d7d7d7;
  border-radius: 32px;
  text-align: center;
}

.shop-card h2 {
  margin: 0 0 24px;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.shop-card p {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 23px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.55;
}

.shop-card-arrow {
  display: flex;
  width: 68px;
  height: 68px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #000;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  padding-bottom: 5px;
}

@media (hover: hover) {
  .shop-card {
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .shop-card:hover {
    border-color: #fff;
    transform: translateY(-5px);
  }
}

@media (max-width: 1024px) {
  .page-shop .site-header {
    height: 200px;
  }

  .shop-page-title {
    margin-top: 41px;
    font-size: 30px;
  }

  .shop-content {
    min-height: 770px;
    padding: 68px 27px 72px;
  }

  .shop-content::before {
    top: 0;
    right: calc(100% - 138px);
    bottom: 118px;
    left: -2px;
    border-radius: 0 120px 0 0;
  }

  .shop-content::after {
    right: -2px;
    bottom: 6px;
    left: 136px;
    height: 120px;
    border-radius: 0 0 0 120px;
  }

  .shop-lead {
    margin-bottom: 54px;
    font-size: 13px;
    line-height: 2.2;
    white-space: nowrap;
  }

  .shop-card-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shop-card {
    min-height: 220px;
    padding: 27px 18px;
    border-width: 5px;
    border-radius: 30px;
  }

  .shop-card h2 {
    margin-bottom: 17px;
    font-size: 26px;
  }

  .shop-card p {
    font-size: 19px;
    line-height: 1.45;
  }

  .shop-card-arrow {
    width: 50px;
    height: 50px;
    margin-top: 16px;
    font-size: 31px;
  }

  .page-shop .site-footer {
    margin-top: 0;
  }
}

@media (max-width: 375px) {
  .shop-lead {
    width: calc(100% + 34px);
    margin-left: -17px;
    font-size: 10px;
    white-space: nowrap;
    text-align: center;
  }
}

@media (max-width: 374px) {
  .shop-lead {
    width: calc(100% + 34px);
    margin-left: -17px;
    font-size: 10px;
    white-space: nowrap;
    text-align: center;
  }

  .shop-card p {
    font-size: 17px;
  }
}
