/* Product Recommendations Section - matches Wu Xing dark gold theme */

#shop-recommendations {
  display: none;
  background: #0a0a15;
  padding: 60px 20px 80px;
}

.pr-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.pr-title-block {
  text-align: center;
  margin-bottom: 48px;
}

.pr-eyebrow {
  color: rgba(212, 175, 55, 0.5);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-family: 'Cinzel', serif;
}

.pr-heading {
  color: #D4AF37;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}

.pr-subtitle {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin: 0;
  font-family: 'Raleway', sans-serif;
}

.pr-loading {
  text-align: center;
  color: rgba(212, 175, 55, 0.4);
  font-size: 14px;
  padding: 40px 0;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.1em;
}

/* Category Section */
.pr-section {
  margin-bottom: 48px;
}

.pr-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.pr-section-title {
  color: #D4AF37;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}

.pr-view-all {
  color: rgba(212, 175, 55, 0.6);
  font-size: 13px;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  transition: color 0.2s;
}

.pr-view-all:hover {
  color: #D4AF37;
}

/* Product Cards Grid */
.pr-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .pr-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pr-cards {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.pr-card {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pr-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pr-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111122;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pr-card:hover .pr-card-img img {
  transform: scale(1.05);
}

.pr-no-img {
  color: rgba(212, 175, 55, 0.3);
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.1em;
}

.pr-card-info {
  padding: 14px 16px;
}

.pr-card-name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pr-card-price {
  color: #D4AF37;
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  font-family: 'Cinzel', serif;
}

.pr-card-empty .pr-card-name {
  color: rgba(212, 175, 55, 0.6);
  text-align: center;
}

/* Footer */
.pr-footer {
  text-align: center;
  margin-top: 48px;
}

.pr-shop-all {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  color: #D4AF37;
  font-size: 14px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.pr-shop-all:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #D4AF37;
  color: #D4AF37;
}
