.shop-container-pro {
  padding: 40px;
  background: #0b0b0b;
  color: #e0c28c;
  font-family: 'Cinzel', serif;
}

.shop-grid-pro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.shop-grid-pro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 50px;
}

.shop-card-pro {
  background: #060606;
  border: 2px solid #45372da8;
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 250px;
  box-shadow: 0 0 10px #000;
}

.shop-item-image-pro {
  max-width: 80px;
  margin: 0 auto;
}

.shop-card-spacer-pro {
  flex-grow: 1;
}

.shop-card-labels-pro {
  margin-bottom: 10px;
}

.shop-card-name-pro {
  font-size: 16px;
  font-family: 'Cinzel', serif;
  color: #ffeaa7;
  text-shadow: 0 0 2px #000;
  margin-bottom: 2px;
}

.shop-card-price-pro {
  font-size: 30px;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0 0 2px #000;
}






.shop-card-pro img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.shop-card-pro h3 {
  font-size: 16px;
  margin: 10px 0;
  color: #eac97d;
}

.shop-card-pro p {
  font-size: 13px;
  color: #ccc;
  margin: 0 0 15px;
  flex-grow: 1;
}

.shop-card-pro form {
  margin-top: auto;
}

.shop-buy-btn-pro {
  background: #174500;
  color: #eac97d;
  border: 2px solid #3a2f1d;
  padding: 10px 16px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  margin-top: auto;
  border-radius: 6px;
  width: 100%;
  transition: all 0.2s ease-in-out;
}

.shop-buy-btn-pro:hover {
  background: #2a6f00;
  color: #fff9e0;
}


.shop-intro-pro {
  text-align: center;
  margin-bottom: 50px;
}

.shop-intro-pro img {
  width: 100%;
  max-width: 900px;
  margin: auto;
  display: block;
  border: 3px solid #3a2f1d;
}

.shop-video-standalone-pro {
  text-align: center;
  margin-bottom: 50px;
}

.shop-video-standalone-pro video {
  width: 100%;
  max-width: 900px;
  border: 3px solid #3a2f1d;
}

.shop-duo-section-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.shop-duo-section-pro.reverse {
  flex-direction: row-reverse;
}

.shop-duo-section-pro video {
  width: 45%;
  border: 3px solid #3a2f1d;
}

.shop-frame-pro {
  position: relative;
  width: 45%;
}

.shop-frame-pro img {
  width: 100%;
  display: block;
  border: 3px solid #3a2f1d;
}

.frame-text-pro {
  position: absolute;
  top: 20%;
  left: 10%;
  right: 10%;
  color: #ffd58b;
  font-size: 1.1em;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 8px;
  text-shadow: 0 0 5px #000;
}

.shop-btn-wrapper-pro {
  display: flex;
  justify-content: center;
}

.shop-btn-image-pro {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.shop-btn-image-pro img {
  width: 120px;
  transition: filter 0.2s ease;
}

.shop-btn-image-pro:hover img {
  filter: brightness(1.3);
}

.shop-btn-text-pro {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  color: #ffeaa7;
  font-weight: bold;
  font-size: 25px;
  text-shadow: 0 0 4px #000;
  pointer-events: none;
  letter-spacing: 1px;
}