/* shop.css */
body {
  font-family: sans-serif;
  margin: 80px;
  padding: 0;
  color: #000;
}


header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}

.menu-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: black;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

nav.hidden {
  display: none;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #555;
}

.intro {
  padding: 0 2rem;
  line-height: 1.6;
}

.intro .en {
  display: block;
  font-size: 0.9rem;
  color: #555;
}

.item, .cd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  gap: 2rem;
}

.item.reverse {
  flex-direction: row-reverse;
}

.item img, .cd img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.item .text, .cd .text {
  flex: 1;
}

.item h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.item h2 span {
  font-size: 1rem;
  color: #555;
  margin-left: 0.5rem;
}

.cd ul {
  list-style: decimal;
  padding-left: 1.2rem;
  margin: 0 0 1rem 0;
}

.cd-info {
  font-size: 0.9rem;
  color: #333;
}

.image {width: 30%;
	    margin-right: 200px;
}

a{
  color: gray;
  text-decoration: none;
}

a:visited{
	color: black;
}
a:hover{
	color:orangered;
}