header {
  width: 100%;
}
.shop-index {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding-block: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.shop-area-nav ul {
	width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.shop-area-nav ul li a {
  display: flex;
  padding: 6px;
  border: 1px solid #ff6200;
  border-radius: 5px;
  font-size: 24px;
  font-weight: bold;
}
.shop-area-nav ul li a:hover {
  background-color: rgba(255, 98, 0, 0.2);
}
.shop-area {
  width: 100%;
  border: 1px solid #adadad;
  border-radius: 10px;
  padding: 30px;
  scroll-margin-top: 210px;
}
.shop-area h2 {
  width: fit-content;
  padding: 3px;
  border-radius: 3px;
  border: 1px solid #ff6200;
  font-size: 18px;
  margin-bottom: 10px;
}
.shop-list .shop-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #adadad;
  padding: 20px;
  gap: 20px;
}
.shop-list .shop-item:nth-last-of-type(1) {
  border-bottom: none;
}
.shop-item .shop-info {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop-item .shop-image {
  width: 100%;
  max-width: 450px;
}
.shop-item .shop-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.code-add {
  display: flex;
  flex-direction: column;
}
.shop-link a {
  font-size: 18px;
  font-weight: bold;
  color: #ef4123;
}

@media (max-width: 1100px) {
  .shop-index {
    padding-inline: 20px;
  }
  .shop-area {
    padding: 20px 10px;
  }
  .shop-item .shop-info {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .shop-index {
    padding-block: 50px;
  }
  .shop-area {
  scroll-margin-top: 160px;
}
  .shop-list .shop-item {
    flex-direction: column-reverse;
    align-items: center;
    padding: 20px 0;
  }
  .shop-area-nav ul li a {
  	font-size: 20px;
    padding: 3px 5px;
  }
  .shop-area-nav ul {
  	row-gap: 10px;
    column-gap: 20px;
  }
}
@media (max-width: 350px) {
  .shop-index {
    padding-inline: 5px;
  }
}