.glass-card {
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid #1e293b;
  /* slate-800 */
  border-radius: 0.5rem;
  /* rounded-lg */
}

.border-l-golden {
  border-left-color: #d4af78;
}

.relite-gradient-text {
  background-image: linear-gradient(to right, #C9A227, #fbbf24);
  /* from-brand-accent to-amber-400 */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.icon-gold-gradient {
  background: linear-gradient(145deg, #d4af78, #ce8e2d, #b8914d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.ps-theme-btn {
  position: relative;
  padding: 7px 15px;
  font-size: 1rem;
  font-weight: 500;
  background: linear-gradient(145deg, #d4af78, #ce8e2d);
  color: #1a1a2e;
  border-color: #d4af78;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 120, 0.3), inset 0 0 10px rgba(212, 175, 120, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ps-theme-btn:hover {
  background: linear-gradient(145deg, #d4af78, #ce8e2d);
  color: #1a1a2e;
  border-color: #d4af78;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 120, 0.5);
}


.ps-theme-btn-small {
  position: relative;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 400;
  background: linear-gradient(145deg, #d4af78, #ce8e2d);
  color: #1a1a2e;
  border-color: #d4af78;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 120, 0.3), inset 0 0 10px rgba(212, 175, 120, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ps-theme-btn-small:hover {
  background: linear-gradient(145deg, #d4af78, #ce8e2d);
  color: #1a1a2e;
  border-color: #d4af78;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 120, 0.5);
}

/* Secondary Button (Outline/Light) */
.ps-theme-btn-secondary {
  position: relative;
  padding: 7px 15px;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a2e;
  background: #ffffff;
  border: 1px solid #d4af78;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ps-theme-btn-secondary:hover {
  background: #fff7ed;
  /* orange-50ish */
  border-color: #ce8e2d;
  color: #ce8e2d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 120, 0.2);
}

.ps-theme-btn-secondary-small {
  position: relative;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 400;
  color: #64748b;
  /* slate-500 for secondary action */
  background: #ffffff;
  border: 1px solid #cbd5e1;
  /* slate-300 */
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ps-theme-btn-secondary-small:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
  transform: translateY(-1px);
}

/* Custom Swiper Navigation (Small, Circular, Glass) */
.swiper-button-next,
.swiper-button-prev {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
  transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}