/* Precious material detail pages (gold, diamond, watches, silver) */
.pp-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(242, 201, 76, 0.26), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(212, 203, 196, 0.14), transparent 30%),
    linear-gradient(125deg, #5a0336 0%, #7a0649 58%, #8d1459 100%);
  color: #fff;
}

.pp-hero .container {
  padding: 78px 0;
  position: relative;
  z-index: 2;
}

.pp-hero::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -110px;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.22);
  pointer-events: none;
}

.pp-hero .hero-bg-icons i {
  color: rgba(242, 201, 76, 0.36);
}

.pp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 12px;
  background: rgba(212, 203, 196, 0.08);
  margin-bottom: 14px;
}

.pp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.pp-hero h1 {
  font-size: 50px;
  line-height: 1.14;
  margin-bottom: 14px;
  color: #fff;
}

.pp-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  font-size: 17px;
}

.pp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pp-hero-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.pp-hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.pp-section {
  padding: 80px 0;
}

.pp-soft {
  background: linear-gradient(to bottom, #D4CBC4, #D4CBC4);
}

.pp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pp-card {
  background: #D4CBC4;
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(122, 6, 73, 0.08);
  transition: var(--transition);
}

.pp-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--gold-glow);
}

.pp-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #D4CBC4 0%, #D4CBC4 100%);
  color: #5a0336;
  font-size: 28px;
  margin-bottom: 14px;
  border: 3px solid #f2c94c;
  box-shadow: 0 8px 20px rgba(242, 201, 76, 0.32);
  animation: ppIconPulse 2.8s ease-in-out infinite;
}

.pp-badge i,
.pp-list i {
  color: #5a0336;
}

.pp-badge i {
  animation: ppBadgeBlink 2.2s ease-in-out infinite;
}

.pp-list i {
  animation: ppListPulse 2.4s ease-in-out infinite;
}

.pp-card:hover .pp-icon {
  animation: ppIconSpin 0.9s ease;
}

@keyframes ppIconPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 20px rgba(242, 201, 76, 0.32);
  }
  50% {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 24px rgba(242, 201, 76, 0.45);
  }
}

@keyframes ppIconSpin {
  0% {
    transform: rotate(0deg) scale(1.02);
  }
  100% {
    transform: rotate(360deg) scale(1.08);
  }
}

@keyframes ppBadgeBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.12);
  }
}

@keyframes ppListPulse {
  0%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0.75;
    transform: translateX(2px);
  }
}

.pp-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}

.pp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.pp-panel {
  background: #D4CBC4;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(122, 6, 73, 0.08);
  padding: 26px 22px;
}

.pp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.pp-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--black);
}

.pp-list i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}

.pp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pp-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.pp-cta {
  padding: 0 0 90px;
}

.pp-cta-box {
  border-radius: 22px;
  background: linear-gradient(135deg, #5a0336 0%, #7a0649 65%, #8d1459 100%);
  color: #fff;
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.pp-cta-box h2 {
  color: #fff;
  margin-bottom: 8px;
}

.pp-cta-box p {
  color: rgba(255, 255, 255, 0.9);
}

.pp-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 991px) {
  .pp-hero-grid,
  .pp-split {
    grid-template-columns: 1fr;
  }

  .pp-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .pp-hero .container {
    padding: 64px 0;
  }

  .pp-hero h1 {
    font-size: 30px;
  }

  .pp-grid-4 {
    grid-template-columns: 1fr;
  }

  .pp-gallery {
    grid-template-columns: 1fr;
  }

  .pp-hero-media img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .pp-section {
    padding: 52px 0;
  }

  .pp-hero-actions,
  .pp-cta-actions {
    flex-direction: column;
  }

  .pp-hero-actions .btn,
  .pp-cta-actions .btn {
    width: 100%;
  }

  .pp-card,
  .pp-panel,
  .pp-cta-box {
    padding: 18px 16px;
    border-radius: 18px;
  }
}

@media (max-width: 575px) {
  .pp-gallery img {
    height: 190px;
  }

  .pp-card h3,
  .pp-panel h3 {
    font-size: 19px;
  }
}
