
/* ==========================================================================
   CUSTOM POKER CHIPS PDP (Strict Scoping #pc-wrap)
   - Fresh Sky Blue & Ice Blue Clean Studio Theme:
     * Primary Deep Navy: #0F2850 (Title / Headings)
     * Sky Blue Accent: #0284C7 / #0EA5E9 (Active highlights & icons)
     * Soft Ice Blue BG: #F0F6FC / #F8FAFC
     * Light Blue Border: #D8E5F3 / #E2E8F0
     * Prestige Amber Gold: #D97706
   - Compact, balanced commercial scale matching reference image
   ========================================================================== */
#pc-wrap {
  --pc-navy: #0F2850;
  --pc-blue: #0284C7;
  --pc-blue-light: #0EA5E9;
  --pc-blue-bg: rgba(2, 132, 199, 0.08);
  --pc-blue-pill: #E8F3FC;
  --pc-gold: #B45309;
  --pc-gold-light: #D97706;
  --pc-gold-bg: rgba(217, 119, 6, 0.08);
  --pc-dark: #1E293B;
  --pc-muted: #52677B;
  --pc-light-muted: #94A3B8;
  --pc-line: #D8E5F3;
  --pc-line-soft: #EDF4FB;
  --pc-bg: #FFFFFF;
  --pc-soft-bg: #F4F8FC;
  --pc-card: #FFFFFF;
  --pc-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --pc-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
  background: var(--pc-bg);
  color: var(--pc-dark);
  font-family: var(--pc-sans);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding: 0 16px 36px 16px;
}

#pc-wrap,
#pc-wrap * {
  box-sizing: border-box;
}

#pc-wrap h1, #pc-wrap h2, #pc-wrap h3, #pc-wrap h4, #pc-wrap p, #pc-wrap ul, #pc-wrap ol, #pc-wrap figure {
  margin: 0;
  padding: 0;
}

#pc-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* REFINED SECTION HEADERS (Matching Reference Proportion) */
.pc-sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 18px auto;
  padding-top: 32px;
}

.pc-sec-title {
  font-family: var(--pc-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pc-navy);
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.25;
}

.pc-sec-subtitle {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--pc-muted);
  letter-spacing: 0.02em;
}

/* 1. HERO SHOWCASE (Mirroring Reference Image Layout) */
.pc-hero-showcase {
  text-align: center;
  padding: 10px 0 20px 0;
}

.pc-hero-banner-box {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.08);
  border: 1px solid var(--pc-line);
  background: var(--pc-soft-bg);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 16px;
}

.pc-hero-banner-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(2, 132, 199, 0.14);
}

.pc-hero-banner-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* REFINED COMPACT TRUST BAR */
.pc-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 12px 20px;
  background: var(--pc-soft-bg);
  border: 1px solid var(--pc-line);
  border-radius: 8px;
  margin: 0 auto 28px auto;
  max-width: 900px;
}

.pc-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-navy);
  letter-spacing: 0.02em;
}

.pc-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--pc-blue);
  flex-shrink: 0;
}

.pc-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #B9D5ED;
}

/* 2. CRAFTSMANSHIP & STYLES GALLERY */
.pc-craft-section {
  margin-bottom: 32px;
}

.pc-craft-banner-box {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.08);
  border: 1px solid var(--pc-line);
  background: var(--pc-soft-bg);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 16px;
}

.pc-craft-banner-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(2, 132, 199, 0.14);
}

.pc-craft-banner-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* 4 COMPACT CRAFT HIGHLIGHT PILLS */
.pc-craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pc-craft-card {
  background: var(--pc-soft-bg);
  border: 1px solid var(--pc-line);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pc-craft-card:hover {
  border-color: var(--pc-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.08);
}

.pc-craft-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--pc-blue-pill);
  color: var(--pc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px auto;
}

.pc-craft-icon svg {
  width: 18px;
  height: 18px;
}

.pc-craft-card h3 {
  font-family: var(--pc-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 4px;
}

.pc-craft-card p {
  font-size: 11.5px;
  color: var(--pc-muted);
  line-height: 1.45;
}

/* 3. FOUR CORE MATERIALS MATRIX (Compact 4-Column Grid) */
.pc-materials-section {
  margin-bottom: 32px;
}

.pc-materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pc-material-card {
  background: var(--pc-card);
  border: 1px solid var(--pc-line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 40, 80, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pc-material-card:hover {
  transform: translateY(-3px);
  border-color: var(--pc-blue);
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.12);
}

.pc-material-thumb {
  width: 100%;
  height: 150px;
  background: #EBF3FA;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.pc-material-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pc-material-card:hover .pc-material-thumb img {
  transform: scale(1.05);
}

.pc-material-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(15, 40, 80, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pc-material-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-material-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.pc-material-title {
  font-family: var(--pc-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--pc-navy);
}

.pc-material-weight {
  font-size: 11px;
  font-weight: 700;
  color: var(--pc-blue);
  background: var(--pc-blue-pill);
  padding: 2px 6px;
  border-radius: 4px;
}

.pc-material-desc {
  font-size: 12px;
  color: var(--pc-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.pc-material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
}

.pc-material-tag {
  background: var(--pc-soft-bg);
  border: 1px solid var(--pc-line);
  color: var(--pc-muted);
  font-size: 10.5px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
}

/* 4. TURNKEY SETS & ACCESSORIES (3-Column Showcase) */
.pc-sets-section {
  margin-bottom: 32px;
}

.pc-sets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pc-set-card {
  background: var(--pc-soft-bg);
  border: 1px solid var(--pc-line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pc-set-card:hover {
  transform: translateY(-2px);
  border-color: var(--pc-blue-light);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.08);
}

.pc-set-thumb {
  width: 100%;
  height: 180px;
  background: #E2EEF8;
  overflow: hidden;
  cursor: pointer;
}

.pc-set-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pc-set-card:hover .pc-set-thumb img {
  transform: scale(1.04);
}

.pc-set-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-set-title {
  font-family: var(--pc-serif);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 4px;
}

.pc-set-desc {
  font-size: 12px;
  color: var(--pc-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.pc-set-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11.5px;
  color: #475569;
  margin-top: auto;
  border-top: 1px solid var(--pc-line);
  padding-top: 8px;
}

.pc-set-items li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc-set-items li::before {
  content: "•";
  color: var(--pc-blue);
  font-weight: bold;
}

/* 5. TECHNICAL SPECIFICATIONS TABLE (Compact, Clean Layout) */
.pc-specs-section {
  margin-bottom: 32px;
  background: var(--pc-card);
  border: 1px solid var(--pc-line);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.04);
}

.pc-specs-table-box {
  width: 100%;
  overflow-x: auto;
}

.pc-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  text-align: left;
}

.pc-specs-table th,
.pc-specs-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--pc-line);
  line-height: 1.5;
}

.pc-specs-table th {
  width: 25%;
  background: var(--pc-soft-bg);
  color: var(--pc-navy);
  font-family: var(--pc-serif);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-right: 1px solid var(--pc-line);
}

.pc-specs-table td {
  color: #334155;
}

.pc-specs-table tr:last-child th,
.pc-specs-table tr:last-child td {
  border-bottom: none;
}

/* 6. ORDERING WORKFLOW (4 Compact Horizontal Steps) */
.pc-flow-section {
  margin-bottom: 32px;
}

.pc-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pc-flow-card {
  background: var(--pc-soft-bg);
  border: 1px solid var(--pc-line);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pc-flow-card:hover {
  transform: translateY(-2px);
  border-color: var(--pc-blue);
}

.pc-flow-num {
  font-family: var(--pc-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--pc-blue);
  background: var(--pc-blue-pill);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px auto;
}

.pc-flow-card h3 {
  font-family: var(--pc-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 4px;
}

.pc-flow-card p {
  font-size: 11.5px;
  color: var(--pc-muted);
  line-height: 1.45;
}

/* 7. FREQUENTLY ASKED QUESTIONS (Native Compact Details Accordion) */
.pc-faq-section {
  margin-bottom: 24px;
}

.pc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto;
}

.pc-faq-item {
  background: var(--pc-card);
  border: 1px solid var(--pc-line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pc-faq-item[open] {
  border-color: var(--pc-blue);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}

.pc-faq-summary {
  padding: 12px 16px;
  font-family: var(--pc-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pc-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.pc-faq-summary::-webkit-details-marker {
  display: none;
}

.pc-faq-summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: var(--pc-blue);
  transition: transform 0.2s ease;
}

.pc-faq-item[open] .pc-faq-summary::after {
  content: "−";
  color: var(--pc-blue);
}

.pc-faq-body {
  padding: 0 16px 14px 16px;
  font-size: 12.5px;
  color: #475569;
  line-height: 1.6;
  border-top: 1px solid var(--pc-line-soft);
  padding-top: 10px;
  text-align: left;
}

/* LIGHTBOX MODAL */
.pc-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 25, 47, 0.88);
  backdrop-filter: blur(6px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pc-lightbox.active {
  display: flex;
}

.pc-lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  animation: pcZoomIn 0.2s ease-out;
}

@keyframes pcZoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.pc-lightbox-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.pc-lightbox-img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.pc-lightbox-caption {
  padding: 12px 18px;
  color: var(--pc-navy);
  font-family: var(--pc-serif);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  background: var(--pc-soft-bg);
  border-top: 1px solid var(--pc-line);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 860px) {
  .pc-craft-grid,
  .pc-materials-grid,
  .pc-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pc-sets-grid {
    grid-template-columns: 1fr;
  }
  .pc-sec-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .pc-craft-grid,
  .pc-materials-grid,
  .pc-flow-grid {
    grid-template-columns: 1fr;
  }
  .pc-trust-bar {
    gap: 8px 16px;
  }
  .pc-trust-dot {
    display: none;
  }
}
