/* ─────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────── */
.pm-faq-section {
  padding: 5rem 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}

.pm-faq-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pm-faq-sub {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.pm-faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pm-faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.pm-faq-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.pm-faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pm-faq-icon {
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-faq-item.active .pm-faq-icon {
  transform: rotate(45deg);
}

.pm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pm-faq-item.active .pm-faq-answer {
  max-height: 200px; /* arbitrary large enough value */
  padding: 0 24px 20px;
}

/* ─────────────────────────────────────────────
   INSTAGRAM LIVE FEED WIDGET
───────────────────────────────────────────── */
.pm-insta-section {
  padding: 4rem 0 5rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.pm-insta-header {
  margin-bottom: 2rem;
}

.pm-insta-header h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pm-insta-header p {
  color: var(--text-secondary);
  margin-top: 8px;
}

.pm-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pm-insta-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
}

.pm-insta-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

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

.pm-insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
}

.pm-insta-item:hover .pm-insta-img {
  transform: scale(1.08);
}

.pm-insta-item:hover .pm-insta-overlay {
  opacity: 1;
}

/* ─────────────────────────────────────────────
   ANTI-COPY PROTECTION CLASSES
───────────────────────────────────────────── */
.pm-no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
