/* Medieval Armory Styles */
.section.shop {
  position: relative;
  padding: 120px 0 100px;
  min-height: calc(100vh - 80px);
  overflow-x: hidden;
}

.shop-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/background/background4.png') center center / cover no-repeat;
  filter: brightness(0.4);
  z-index: -2;
}

.shop-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
          rgba(11, 11, 11, 0.2) 0%,
          rgba(11, 11, 11, 0.4) 50%,
          rgba(11, 11, 11, 0.95) 90%,
          rgba(11, 11, 11, 1) 100%);
  z-index: -1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  margin: 0 0 15px 0;
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(184, 138, 0, 0.5);
  font-family: var(--font-display);
}

.text-glow {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(184, 138, 0, 0.5);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-body);
}

.shop-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 0;
}

.coin-shop {
  max-width: 800px;
  width: 100%;
  background: rgba(30, 30, 38, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-mid);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.coin-display {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-mid);
}

.coin-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 5px rgba(184, 138, 0, 0.5));
}

.coin-info h2 {
  margin: 0 0 10px 0;
  font-size: 2em;
  color: var(--primary);
}

.coin-info p {
  margin: 0;
  opacity: 0.9;
  color: var(--text-secondary);
}

.pricing-calculator {
  background: rgba(30, 30, 38, 0.85);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border: 1px solid var(--border-mid);
}

.pricing-calculator h3 {
  margin-top: 0;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 10px;
  font-family: var(--font-display);
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text-secondary);
  font-family: var(--font-display);
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-size: 16px;
  box-sizing: border-box;
  font-family: var(--font-body);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--neutral-dark);
}

.coin-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  padding-right: 40px;
  cursor: pointer;
}

/* Coin options styling */
.coin-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 15px 0;
}

.coin-option {
  text-align: center;
  padding: 15px 10px;
  border: 2px solid var(--border-mid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

.coin-option:hover {
  background-color: rgba(184, 138, 0, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.coin-option.selected {
  background-color: rgba(184, 138, 0, 0.3);
  border-color: var(--gold-base);
  box-shadow: 0 0 10px rgba(184, 138, 0, 0.3);
}

.coin-icon-large {
  position: relative;
  margin: 0 auto 10px;
  width: 60px;
  height: 60px;
}

.coin-icon-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coin-quantity {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid var(--text-primary);
}

.coin-price {
  font-weight: bold;
  color: var(--text-primary);
  font-size: 14px;
}

.quantity-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.qty-btn {
  padding: 10px;
  background: linear-gradient(135deg, var(--gold-base) 0%, var(--gold-dark) 100%);
  color: var(--neutral-darker);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-display);
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.qty-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 138, 0, 0.4);
  background: linear-gradient(135deg, var(--gold-highlight) 0%, var(--gold-base) 100%);
}

.qty-btn:active {
  transform: translateY(0);
}

.price-breakdown {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 15px;
  margin: 20px 0;
  border: 1px solid var(--border-light);
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border-light);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row.total {
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(184, 138, 0, 0.1);
  padding: 12px;
  border-radius: var(--radius-sm);
  border-top: 2px solid var(--gold-base);
}

.divider {
  height: 1px;
  background-color: var(--border-light);
  margin: 10px 0;
}

.btn-primary {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold-base) 0%, var(--gold-dark) 100%);
  color: var(--neutral-darker);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-display);
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(184, 138, 0, 0.4);
  background: linear-gradient(135deg, var(--gold-highlight) 0%, var(--gold-base) 100%);
}

.redeem-info {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
  text-align: center;
}

.redeem-info a {
  color: var(--gold-highlight);
  text-decoration: underline;
}

.redeem-info a:hover {
  color: var(--gold-base);
}
  .section.shop {
    padding: 100px 0 60px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .coin-display {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .shop-content {
    flex-direction: column;
    align-items: center;
  }
  
  .coin-shop {
    padding: 20px;
  }
  
  .pricing-calculator {
    padding: 15px;
  }
  
  .quantity-options {
    grid-template-columns: repeat(2, 1fr);
  }
}
