/* ========================================
   PTK DASHBOARD CENTER ALIGN
======================================== */

.ptk-dashboard-grid{
  display: grid;
  gap: 16px;
}

/* การ์ดแต่ละช่อง */
.ptk-dashboard-grid > *{
  display: flex;
  flex-direction: column;
  align-items: center;     /* 🔥 กลางแนวนอน */
  justify-content: center; /* 🔥 กลางแนวตั้ง */
  text-align: center;
}

/* ตัวเลข */
.ptk-dashboard-grid .ptk-dashboard-value{
  font-size: 22px;
  font-weight: 700;
  margin-top: 4px;
}

/* label */
.ptk-dashboard-grid .ptk-dashboard-label{
  font-size: 14px;
  color: #9a9a9a;
}

/* ========================================
   PTK DASHBOARD (READ-ONLY STYLE)
======================================== */

.ptk-dashboard-grid > *{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 14px;
  border-radius: 14px;

  /* 🔥 พื้นอ่อนกว่าการ์ดอื่น */
  background: rgba(255,255,255,.02);

  border: 1px dashed rgba(255,255,255,.08);

  box-shadow: none;

  /* 🔥 ทำให้รู้ว่าไม่ interactive */
  cursor: default;
}

/* ตัด hover effect ถ้ามี */
.ptk-dashboard-grid > *:hover{
  transform: none !important;
  box-shadow: none !important;
  border-color: rgba(255,255,255,.08);
}

/* label */
.ptk-dashboard-label{
  font-size: 13px;
  color: #8a8a8a;
}

/* ตัวเลข */
.ptk-dashboard-value{
  font-size: 20px;
  font-weight: 700;
  margin-top: 4px;
  color: #eaeaea;
}




/* =========================================================
   PTK POST CARD FINAL (CLEAN + ORDERED)
========================================================= */

/* =========================
   CARD BASE
========================= */
.ptk-post-card.ptk-page-card{
  padding: 0;
  border-radius: 15px !important;
  overflow: hidden;

  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%) !important;
  border: 1px solid rgba(255,255,255,.06) !important;

  box-shadow:
    0 10px 26px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.02) !important;

  transition: transform .2s ease, box-shadow .2s ease;
}

/* =========================
   HOVER EFFECT
========================= */
.ptk-post-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.26);
}

/* =========================
   IMAGE
========================= */
.ptk-post-card__thumb{
  border-radius: 0;
  overflow: hidden;
  background: #0d0d0d;
}

.ptk-post-card__thumb img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 10px 10px 0 0;
  transition: transform .4s ease;
}

/* =========================
   IMAGE HOVER
========================= */
.ptk-post-card:hover .ptk-post-card__thumb img{
  transform: scale(1.03);
}

/* =========================
   BODY
========================= */
.ptk-post-card__body{
  padding: 10px !important;
}

/* =========================
   META
========================= */
.ptk-post-card__meta{
  display: flex;
  align-items: center;
  gap: 6px;

  margin-bottom: 6px;

  font-size: 12.5px;
  color: #9a9a9a;
}

/* =========================
   TITLE
========================= */
.ptk-post-card__title{
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.45;
  color: #f2f2f2;
}

/* =========================
   CATEGORY
========================= */
.ptk-post-card__category{
  color: #d1a84a;
}

/* =========================
   EXCERPT
========================= */
.ptk-post-card__excerpt{
  font-size: 13.5px;
  line-height: 1.6;
  color: #bfbfbf;
}



/* ========================================
   PTK ADDITIONAL CSS - CLEAN FINAL
======================================== */

/* =========================
   CONTENT AREA
========================= */
.ptk-container{
  padding-left:10px;
  padding-right:10px;
}

.ptk-page-card{
  padding:10px;
}

main#primary{
  padding:10px 0 18px;
}

/* =========================
   DRAWER LOGO
========================= */
.ptk-drawer__logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.ptk-drawer__logo img{
  width:44px;
  height:44px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid rgba(196,154,61,.22);
  flex:0 0 44px;
}

/* =========================
   MENU SCROLL UX
========================= */
.ptk-primary-menu-scroll,
.ptk-scroll-nav__inner{
  cursor:grab;
}

.ptk-primary-menu-scroll.is-dragging,
.ptk-scroll-nav__inner.is-dragging{
  cursor:grabbing;
}

.ptk-primary-menu a,
.ptk-scroll-nav a{
  cursor:pointer;
}

/* =========================
   MENU STRUCTURE
========================= */
.ptk-primary-menu-shell,
.ptk-scroll-nav-shell{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
}

.ptk-hamburger-fixed{
  flex:0 0 42px;
  width:42px;
  height:42px;
  position:relative;
  z-index:5;
  background:var(--ptk-surface-2);
}

.ptk-primary-menu-scroll{
  flex:1;
  min-width:0;
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:none;
}

.ptk-primary-menu-scroll::-webkit-scrollbar{
  display:none;
}

.ptk-scroll-nav__inner{
  flex:1;
  min-width:0;
}

/* =========================
   MENU LIST BASE
========================= */
.ptk-primary-menu__list,
.ptk-scroll-nav__menu{
  display:flex;
  align-items:center;
  gap:10px;
  list-style:none;
  margin:0;
  padding:0;
  flex-wrap:nowrap;
  white-space:nowrap;
  width:max-content;
}

.ptk-primary-menu__list > li,
.ptk-scroll-nav__menu > li{
  flex:0 0 auto;
}

/* =========================
   MENU LINK BASE
========================= */
.ptk-primary-menu__list > li > a,
.ptk-scroll-nav__menu > li > a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:42px;
  padding:8px 16px;
  border-radius:999px;
  text-decoration:none;
  transition:all .2s ease;
}

/* desktop */
.ptk-primary-menu__list > li > a{
  color:#eee;
}

/* mobile */
.ptk-scroll-nav__menu > li > a{
  background:transparent;
  color:#ddd;
  font-weight:400;
}

/* =========================
   MOBILE TOP MENU (FIX ซ้อน)
========================= */

/* ปิด indicator */
.ptk-scroll-nav__indicator{
  display:none !important;
}

/* active แบบเดียวกับ bottom nav */
.ptk-scroll-nav__menu > li.current-menu-item > a,
.ptk-scroll-nav__menu > li.current_page_item > a,
.ptk-scroll-nav__menu > li.is-active > a{
  background:rgba(196,154,61,.18);
  color:var(--ptk-gold-soft);
  font-weight:600;
}

/* =========================
   DESKTOP MENU ACTIVE
========================= */
.ptk-primary-menu__list > li.current-menu-item > a,
.ptk-primary-menu__list > li.current_page_item > a,
.ptk-primary-menu__list > li.is-active > a{
  background:rgba(196,154,61,.16);
  color:var(--ptk-gold-soft);
}

/* =========================
   DRAWER ACTIVE
========================= */
.ptk-primary-drawer-menu > li.current-menu-item > a,
.ptk-primary-drawer-menu > li.current_page_item > a,
.ptk-primary-drawer-menu > li.is-active > a{
  color:var(--ptk-gold-soft);
}

/* =========================
   MENU ICON
========================= */
.ptk-primary-menu__list a .dashicons,
.ptk-scroll-nav__menu a .dashicons{
  font-size:16px;
  margin-right:4px;
}

/* icon active */
.ptk-scroll-nav__menu > li.is-active > a .ptk-menu-icon,
.ptk-primary-menu__list > li.is-active > a .ptk-menu-icon{
  transform:scale(1.05);
  color:var(--ptk-gold-soft);
}

/* =========================
   MOBILE FOOTER HIDE
========================= */
@media (max-width:860px){
  .site-footer{
    display:none !important;
  }
}

/* =========================
   BOTTOM NAV (ปรับไทย)
========================= */
@media (max-width:860px){

  .ptk-bottom-nav{
    border-top:1px solid rgba(255,255,255,.08);
  }

  .ptk-bottom-nav__inner{
    gap:4px;
    padding:8px 8px calc(10px + env(safe-area-inset-bottom));
  }

  .ptk-bottom-nav__link{
    min-height:54px;
    gap:5px;
    padding:4px 2px;
    border-radius:14px;
  }

  .ptk-bottom-nav__link .dashicons{
    width:20px;
    height:20px;
    font-size:20px;
    line-height:20px;
  }

  .ptk-bottom-nav__label{
    font-size:12px;
    line-height:1.35;
    overflow:visible;
  }

  .ptk-bottom-nav__link.is-active{
    background:rgba(196,154,61,.18);
    color:var(--ptk-gold-soft);
  }
}

/* =========================
   PAGE WRAPPER RESET
========================= */
.ptk-page-card{
  padding:10px 0px 10px 0px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* ซ่อนหัวข้อธีม ถ้ายังมีอยู่ */
.entry-title{
  display:none !important;
}

/* กัน margin ตัวแรกดันลง */
.entry-content > :first-child{
  margin-top:0 !important;
}


.ptk-amulet-shop__card--vip {
    border: 1px solid #c49a3d;
    box-shadow: 0 0 12px rgba(196,154,61,0.4);
    position: relative;
}

/* Hover */
.ptk-amulet-shop__card--vip:hover {
    box-shadow: 0 0 18px rgba(196,154,61,0.6);
    transform: translateY(-2px);
}

.ptk-amulet-shop__card--vip::before {
    content: "VIP";
    position: absolute;
    top: 8px;
    right: 8px;
    background: #c49a3d;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
}

.single-ptk_amulet img.wp-post-image,
.single-ptk_amulet .post-thumbnail,
.single-ptk_amulet .entry-image,
.single-ptk_amulet .featured-image {
  display: none !important;
}


/* =========================================================
   PTK AMULET SINGLE - SOFT / EASY EYES
   ใช้วางทับชุด single เดิม
========================================================= */

/* =========================
   COLOR TONE ใหม่
   เบา สะอาด เด่นแบบพรีเมียม
========================= */
:root {
  --ptk-color-bg: #ffffff;
  --ptk-color-bg-soft: #fcfcfb;
  --ptk-color-bg-muted: #f6f6f4;

  --ptk-color-text: #181818;
  --ptk-color-text-soft: #2f2f2f;
  --ptk-color-text-muted: #6f6f6f;

  --ptk-color-border: #e8e8e3;
  --ptk-color-border-soft: #ddddd7;
  --ptk-color-border-hover: #cfcfc7;

  --ptk-color-accent: #b28a2e;
  --ptk-color-accent-soft: #efe6c8;

  --ptk-color-price: #7a6322;
  --ptk-color-price-strong: #5f4b17;
  --ptk-color-price-bg: #fbf8ef;
  --ptk-color-price-border: #e8dcc0;

  --ptk-shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.045);
  --ptk-shadow-active: 0 0 0 2px rgba(178, 138, 46, 0.12);
}

/* =========================
   PANEL
========================= */
.ptk-amulet-gallery-panel,
.ptk-amulet-info-panel,
.ptk-amulet-single-description {
  background: var(--ptk-color-bg);
  border: 1px solid var(--ptk-color-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--ptk-shadow-soft);
}

.ptk-amulet-gallery-panel h3,
.ptk-amulet-info-panel h3,
.ptk-amulet-single-description h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ptk-color-text);
  margin-bottom: 12px;
}

/* =========================
   TITLE
========================= */
.ptk-amulet-single-title {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.3;
  color: var(--ptk-color-text);
  letter-spacing: -0.2px;
}

/* =========================
   PRICE
   เปลี่ยนจากเด่นด้วยทองเยอะ
   เป็นเด่นด้วย typography + background เบา
========================= */
.ptk-amulet-single-price {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 10px 14px;
  border: 1px solid var(--ptk-color-price-border);
  border-radius: 12px;
  background: var(--ptk-color-price-bg);
  color: var(--ptk-color-price-strong);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.3;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.ptk-amulet-single-price del {
  color: #8f8f8f;
  opacity: 0.95;
  margin-right: 2px;
  font-size: 15px;
  font-weight: 500;
}

.ptk-amulet-single-price ins {
  color: var(--ptk-color-price-strong);
  text-decoration: none;
}

/* =========================
   STATUS / OWNER / CATS
========================= */
.ptk-amulet-single-status,
.ptk-amulet-single-owner,
.ptk-amulet-single-cats {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--ptk-color-text-soft);
}

.ptk-label {
  margin-right: 6px;
  font-weight: 700;
  color: var(--ptk-color-text);
}

/* =========================
   OWNER PILL
   ลดความขาวแสบ + ลดคอนทราสต์
========================= */
.ptk-amulet-single-wrap .ptk-amulet-single-owner {
  display: inline-block;
  padding: 7px 12px;
  background: #f7f7f4;
  border: 1px solid #e7e7e2;
  border-radius: 999px;
}

.ptk-amulet-single-wrap .ptk-amulet-single-owner a {
  color: #222;
  text-decoration: none;
}

.ptk-amulet-single-wrap .ptk-amulet-single-owner a:hover {
  color: var(--ptk-color-accent);
}

/* =========================
   CATEGORY BADGE
   เบา สะอาด อ่านง่าย
========================= */
.ptk-amulet-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  margin: 4px 6px 0 0;
  border: 1px solid #e5e5df;
  border-radius: 999px;
  background: #fafaf8;
  color: #353535;
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.2s ease;
}

.ptk-amulet-cat-badge:hover {
  background: #f4f1e8;
  border-color: #ddd2b4;
  color: #222;
}

.ptk-amulet-cat-badge .ptk-count {
  opacity: 0.65;
}

/* =========================
   THUMB BUTTON
========================= */
.ptk-amulet-thumb-btn {
  padding: 0;
  border: 1px solid #e4e4de;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s ease;
}

.ptk-amulet-thumb-btn.is-active {
  border-color: var(--ptk-color-accent);
  box-shadow: var(--ptk-shadow-active);
}

.ptk-amulet-thumb-btn:hover {
  transform: translateY(-1px);
  border-color: #d8ccb0;
}

/* =========================
   MAIN IMAGE
========================= */
.ptk-amulet-main-image-btn img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  background: #f5f5f2;
}

/* =========================
   ACTIONS
========================= */
.ptk-amulet-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ptk-amulet-single-actions .ptk-btn,
.ptk-amulet-info-panel .ptk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 10px;
}

/* =========================
   FOLLOW บนหน้า single
   ลดดำจัด ให้ดูนุ่มขึ้น
========================= */
.ptk-amulet-single-wrap .ptk-amulet-follow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: #f6f6f3;
  border: 1px solid #e3e3dd;
  border-radius: 999px;
}

.ptk-amulet-single-wrap .ptk-amulet-follow-wrap .ptk-btn,
.ptk-amulet-single-wrap .ptk-amulet-follow-wrap button,
.ptk-amulet-single-wrap .ptk-amulet-follow-self {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  flex: 0 0 auto;
  min-height: 0;
  height: auto;
  margin: 0;
  box-shadow: none;
  padding: 4px 9px;
  font-size: 11px;
  line-height: 1;
  background: #2c2c2c;
  color: #fff;
  border: 0;
  border-radius: 999px;
}

.ptk-amulet-single-wrap .ptk-amulet-follow-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 3px 7px;
  font-size: 10px;
  line-height: 1;
  background: #ebe7dd;
  color: #4b4b4b;
  border-radius: 999px;
}

/* =========================
   DESCRIPTION
========================= */
.ptk-amulet-description-content {
  line-height: 1.85;
  color: #383838;
}

/* =========================
   RELATED TITLE
========================= */
.ptk-amulet-single-wrap .ptk-rel-title {
  display: inline-block;
  padding: 7px 12px;

  background: #1a1a1a;   /* 🔥 ตัดกับพื้น */
  border: 1px solid #2a2a2a;
  border-radius: 999px;

  color: #fff;           /* 🔥 อ่านชัด */
  font-weight: 600;
}

/* =========================
   LIGHTBOX
========================= */
.ptk-lightbox-close,
.ptk-lightbox-nav {
  background: rgba(30,30,30,.50);
  color: #fff;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 980px) {
  .ptk-amulet-single-title {
    font-size: 24px;
  }

  .ptk-amulet-single-price {
    font-size: 21px;
  }
}

@media (max-width: 640px) {
  .ptk-amulet-gallery-panel,
  .ptk-amulet-info-panel,
  .ptk-amulet-single-description {
    padding: 14px;
    border-radius: 14px;
  }
}

/* =========================================================
   PTK AMULET SINGLE - FINAL COLOR FIX
   แก้เฉพาะหน้า single พระ ไม่ลาม follow/chat
========================================================= */

/* หมวดหมู่: เอาทองออก ให้เป็นดำกลาง */
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-single-cats,
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-single-cats .ptk-label,
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-single-cats a,
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-cat-badge,
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-cat-badge span{
  color:#333 !important;
}

/* badge หมวดหมู่ */
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-cat-badge{
  background:#fafaf8 !important;
  border:1px solid #e5e5df !important;
}

/* แตะหมวดหมู่ */
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-cat-badge:hover,
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-cat-badge:hover span{
  background:#2a2a2a !important;
  border-color:#2a2a2a !important;
  color:#fff !important;
}

/* เจ้าของร้าน / โปรไฟล์เจ้าของ */
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-single-owner,
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-single-owner a{
  color:#2a2a2a !important;
}

.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-single-owner a:hover{
  color:#000 !important;
}

/* ปุ่มรองในหน้า single เช่น ดูพระทั้งหมด / ดูร้าน / บันทึก */
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-single-actions a.ptk-btn:not(.ptk-chat-start-btn),
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-info-panel a.ptk-btn:not(.ptk-chat-start-btn){
  background:#f4f4f2 !important;
  color:#222 !important;
  border:1px solid #e3e3dd !important;
}

/* hover ปุ่มรอง */
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-single-actions a.ptk-btn:not(.ptk-chat-start-btn):hover,
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-info-panel a.ptk-btn:not(.ptk-chat-start-btn):hover{
  background:#2a2a2a !important;
  color:#fff !important;
  border-color:#2a2a2a !important;
}

/* กันปุ่มทักถามพระไม่โดนเปลี่ยนเป็นปุ่มอ่อน */
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-chat-start-btn,
.single-ptk_amulet .ptk-amulet-single-wrap a.ptk-chat-start-btn{
  background:#111 !important;
  color:#fff !important;
  border-color:#111 !important;
}

/* กัน follow ไม่โดน */
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-follow-wrap .ptk-btn,
.single-ptk_amulet .ptk-amulet-single-wrap .ptk-amulet-follow-wrap button{
  background:#2c2c2c !important;
  color:#fff !important;
  border:0 !important;
}

/* =========================================================
   PTK SINGLE BUTTON FINAL (CHAT + FAVORITE)
========================================================= */

/* =========================
   ปุ่มทักถามพระ
========================= */
.single-ptk_amulet .ptk-chat-start-btn{
  background:#1a1a1a !important;
  color:#fff !important;
  border:1px solid #1a1a1a !important;

  border-radius:10px;
  transition:all .2s ease;
}

/* hover */
.single-ptk_amulet .ptk-chat-start-btn:hover{
  background:#2a2a2a !important;
  border-color:#2a2a2a !important;
  color:#fff !important;
}

/* ตอนกด (แก้ขาวตอนแตะ) */
.single-ptk_amulet .ptk-chat-start-btn:active,
.single-ptk_amulet .ptk-chat-start-btn:focus{
  background:#111 !important;
  border-color:#111 !important;
  color:#fff !important;
}

/* =========================
   ปุ่มบันทึก (favorite)
========================= */
.single-ptk_amulet .ptk-favorite-toggle{
  background:#f4f4f2 !important;
  color:#222 !important;
  border:1px solid #e3e3dd !important;

  border-radius:10px;
  transition:all .2s ease;
}

/* hover */
.single-ptk_amulet .ptk-favorite-toggle:hover{
  background:#2a2a2a !important;
  border-color:#2a2a2a !important;
  color:#fff !important;
}

/* active (กดแล้ว) */
.single-ptk_amulet .ptk-favorite-toggle.is-active{
  background:#2a2a2a !important;
  border-color:#2a2a2a !important;
  color:#fff !important;
}

/* ตอนแตะ (มือถือ fix) */
.single-ptk_amulet .ptk-favorite-toggle:active,
.single-ptk_amulet .ptk-favorite-toggle:focus{
  color:#fff !important;
}

/* =========================================================
   PTK BUTTON - DANGER (DELETE)
========================================================= */

.ptk-btn.ptk-btn-danger{
  background:#e53935 !important;
  color:#fff !important;
  border:1px solid #e53935 !important;

  border-radius:10px;
  transition:all .2s ease;
}

/* hover */
.ptk-btn.ptk-btn-danger:hover{
  background:#c62828 !important;
  border-color:#c62828 !important;
  color:#fff !important;
}

/* ตอนกด */
.ptk-btn.ptk-btn-danger:active,
.ptk-btn.ptk-btn-danger:focus{
  background:#b71c1c !important;
  border-color:#b71c1c !important;
  color:#fff !important;
}

/* =========================================================
   PTK FAVORITE BUTTON - SUCCESS STATE
========================================================= */

/* ปกติ (ยังไม่บันทึก) */
.single-ptk_amulet .ptk-favorite-toggle{
  background:#f4f4f2 !important;
  color:#222 !important;
  border:1px solid #e3e3dd !important;
  border-radius:10px;
  transition:all .2s ease;
}

/* hover */
.single-ptk_amulet .ptk-favorite-toggle:hover{
  background:#2a2a2a !important;
  color:#fff !important;
  border-color:#2a2a2a !important;
}

/* =========================
   ✔ บันทึกแล้ว (ชมพู)
========================= */
.single-ptk_amulet .ptk-favorite-toggle.is-active{
  background:#e91e63 !important;   /* ชมพู */
  border-color:#e91e63 !important;
  color:#fff !important;
}

/* hover ตอน active */
.single-ptk_amulet .ptk-favorite-toggle.is-active:hover{
  background:#c2185b !important;
  border-color:#c2185b !important;
}

/* ตอนกด */
.single-ptk_amulet .ptk-favorite-toggle:active{
  transform:scale(0.97);
}



/* =========================
   PTK AMULET FORM UI
========================= */

.ptk-amulet-form-wrap {
  max-width: 780px;
  margin: 24px auto;
  padding: 24px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.ptk-amulet-form-wrap h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.ptk-amulet-form-wrap h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -.3px;
}

.ptk-amulet-form {
  display: block;
}

.ptk-field {
  margin-bottom: 18px;
}

.ptk-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.ptk-field input[type="text"],
.ptk-field input[type="number"],
.ptk-field input[type="file"],
.ptk-field textarea,
.ptk-field select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  background: #fff;
  color: #111;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.ptk-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.7;
}

.ptk-field input[type="text"]:focus,
.ptk-field input[type="number"]:focus,
.ptk-field textarea:focus,
.ptk-field select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}

.ptk-field input[type="file"] {
  padding: 12px;
  background: #fafafa;
  cursor: pointer;
}

.ptk-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ptk-help {
  margin: 8px 0 0;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Notices */
.ptk-amulet-notice {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.ptk-amulet-notice.success {
  background: #edf8f0;
  border: 1px solid #cfe8d5;
  color: #1f5e31;
}

.ptk-amulet-notice.error {
  background: #fff1f1;
  border: 1px solid #f0d1d1;
  color: #8a2d2d;
}

/* Preview uploader */
#ptk_amulet_preview {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.ptk-img-item {
  width: 148px;
  padding: 8px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.03);
}

.ptk-img-item img {
  display: block;
  width: 100%;
  height: 126px;
  object-fit: cover;
  border-radius: 12px;
  background: #f7f7f7;
}

.ptk-img-item.is-featured {
  border-color: #111;
  box-shadow: 0 0 0 2px rgba(0,0,0,.08);
}

.ptk-img-meta {
  margin-top: 8px;
  font-size: 12px;
  color: #666;
}

.ptk-img-controls {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.ptk-img-btn {
  flex: 1;
  padding: 7px 8px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f8f8f8;
  font-size: 12px;
  cursor: pointer;
  transition: .2s ease;
}

.ptk-img-btn:hover {
  background: #f0f0f0;
}

/* Advanced toggle */
.ptk-advanced-toggle {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px dashed #cfcfcf;
  border-radius: 16px;
  background: #fafafa;
}

.ptk-advanced-toggle summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  list-style: none;
}

.ptk-advanced-toggle summary::-webkit-details-marker {
  display: none;
}

.ptk-advanced-toggle[open] summary {
  margin-bottom: 12px;
}

.ptk-advanced-toggle .ptk-field:last-child {
  margin-bottom: 0;
}

/* Actions */
.ptk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ptk-actions .ptk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid #ddd;
  text-decoration: none;
  font-weight: 700;
  transition: .2s ease;
}

.ptk-actions .ptk-btn:hover {
  transform: translateY(-1px);
}

.ptk-actions .ptk-btn[type="submit"],
.ptk-actions button.ptk-btn {
  background: #111;
  color: #fff;
  border-color: #111;
}

.ptk-actions .ptk-btn-secondary {
  background: #fff;
  color: #111;
}

/* Mobile */
@media (max-width: 768px) {
  .ptk-amulet-form-wrap {
    padding: 18px;
    border-radius: 16px;
  }

  .ptk-amulet-form-wrap h2 {
    font-size: 24px;
  }

  .ptk-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ptk-img-item {
    width: 132px;
  }
}

@media (max-width: 480px) {
  .ptk-amulet-form-wrap {
    padding: 14px;
  }

  .ptk-actions {
    flex-direction: column;
  }

  .ptk-actions .ptk-btn,
  .ptk-actions button.ptk-btn {
    width: 100%;
  }

  .ptk-img-item {
    width: calc(50% - 6px);
  }
}

/* =========================
   SINGLE NAV (PREV / NEXT)
   โทนสบายตา + ซ่อนช่องว่าง
========================= */

/* layout หลัก */
.ptk-single-post-nav {
  display: flex;
  gap: 10px;
  width: 100%;
}

/* กล่อง prev / next */
.ptk-single-post__nav-prev,
.ptk-single-post__nav-next {
  flex: 1 1 0;
  min-width: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 1px 16px;

  border-radius: 12px;
  background: #f6f6f3;
  border: 1px solid #e3e3dd;

  color: #2a2a2a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* hover */
.ptk-single-post__nav-prev:hover,
.ptk-single-post__nav-next:hover {
  background: #f0ede4;
  border-color: #d8ccb0;
  color: #111;
  transform: translateY(-1px);
}

/* ซ่อนถ้าไม่มีลิงก์จริง */
.ptk-single-post__nav-prev:empty,
.ptk-single-post__nav-next:empty,
.ptk-single-post__nav-prev:not(:has(a)),
.ptk-single-post__nav-next:not(:has(a)) {
  display: none;
}


/* ถ้าข้างในเป็น ให้กินเต็มกล่อง */
.ptk-single-post__nav-prev a,
.ptk-single-post__nav-next a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  color: inherit;
  text-decoration: none;
}

/* ถ้าเหลือปุ่มเดียว ให้เต็มแถว */
.ptk-single-post-nav > :only-child {
  flex: 1 1 100%;
}

/* มือถือ */
@media (max-width: 640px) {
  .ptk-single-post-nav {
    flex-direction: column;
  }
}



/* =========================
   PROFILE MENU = GRID MODE
========================= */

.ptk-profile-tabs {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}

/* =========================
   ITEM = CARD
========================= */
.ptk-profile-tabs .ptk-profile-tab {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 18px 12px;
  border-radius: 16px;

  background: #151515;
  border: 1px solid #2a2a2a;

  text-align: center;
  text-decoration: none;
  color: #fff;

  transition: all 0.25s ease;
}

/* hover */
.ptk-profile-tabs .ptk-profile-tab:hover {
  background: #1f1f1f;
  border-color: #c49a3d;
  transform: translateY(-2px);
}

/* =========================
   ICON
========================= */
.ptk-profile-tabs .ptk-profile-tab .dashicons {
  font-size: 24px;
  margin-bottom: 8px;
  color: #c49a3d;
}

/* =========================
   TEXT
========================= */
.ptk-profile-tabs .ptk-tab-label,
.ptk-profile-tabs .ptk-chat-badge-target {
  font-size: 13px;
  line-height: 1.4;
}

/* =========================
   ACTIVE
========================= */
.ptk-profile-tabs .ptk-profile-tab.is-active {
  background: #c49a3d;
  color: #111;
  border-color: #c49a3d;
}

.ptk-profile-tabs .ptk-profile-tab.is-active .dashicons {
  color: #111;
}

/* =========================
   FIX WIDTH (ลบของเดิม)
========================= */
.ptk-profile-tabs a.ptk-profile-tab {
  flex: unset !important;
  max-width: 100% !important;
}

/* =========================
   RESPONSIVE
========================= */

/* tablet */
@media (max-width: 1024px) {
  .ptk-profile-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* mobile */
@media (max-width: 640px) {
  .ptk-profile-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ptk-profile-tabs .ptk-profile-tab {
    padding: 16px 10px;
  }

  .ptk-profile-tabs .ptk-profile-tab .dashicons {
    font-size: 22px;
  }
}



/* =========================================================
   PROFILE HEADER LUXURY TEST
   ไม่ย้าย HTML / ใช้ CSS ยกส่วน summary ขึ้นมาทับปก
========================================================= */

/* การ์ดหัวโปรไฟล์ */
.ptk-profile-header {
    position: relative;
    overflow: visible;
    padding-bottom: 10px;
}

/* ปก */
.ptk-profile-cover {
    position: relative;
    margin-bottom: 0;
    min-height: 220px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #171717, #242424);
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

.ptk-profile-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.58) 0%,
        rgba(0,0,0,0.24) 32%,
        rgba(0,0,0,0.05) 58%,
        rgba(0,0,0,0.00) 100%
    );
    pointer-events: none;
}

.ptk-profile-cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* ยก summary ขึ้นมาทับปก */
.ptk-profile-summary {
    position: relative;
    z-index: 3;
    margin-top: -58px;
    padding: 0 18px 6px;
    align-items: flex-end;
    gap: 16px;
}

/* avatar */
.ptk-profile-avatar {
    position: relative;
    flex: 0 0 auto;
}

.ptk-profile-avatar img {
    width: 108px;
    height: 108px;
    object-fit: cover;
    border-radius: 999px;
    border: 4px solid #111;
    box-shadow:
        0 10px 24px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.06);
    background: #111;
    display: block;
}

/* กลุ่มชื่อ + badge */
.ptk-profile-meta {
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 16px 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(20,20,20,0.88), rgba(14,14,14,0.94));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 12px 24px rgba(0,0,0,0.24);
    backdrop-filter: blur(8px);
}

/* ชื่อผู้ใช้ */
.ptk-profile-meta h2,
.ptk-profile-meta h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* badge */
.ptk-profile-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.ptk-badge {
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.ptk-badge-free {
    background: #303030;
    color: #fff;
    border: 1px solid #3a3a3a;
}

.ptk-badge-vip {
    background: #c49a3d;
    color: #111;
    border: 1px solid #c49a3d;
}

.ptk-badge-trusted {
    background: #1f7a53;
    color: #fff;
    border: 1px solid #1f7a53;
}

/* ข้อความรอง */
.ptk-profile-meta p {
    margin: 0 0 8px;
    color: #d5d5d5;
    line-height: 1.65;
}

/* social */
.ptk-profile-socials {
    margin-top: 10px;
    gap: 10px;
}

.ptk-social-link {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.22);
}

/* กระดิ่ง */
.ptk-profile-header-tools {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 6;
}

/* ให้การ์ดหัวไม่แน่นเกิน */
.ptk-profile-header.ptk-card {
    padding: 10px;
    border-radius: 22px;
    overflow: visible;
}

/* =========================
   TABLET
========================= */
@media (max-width: 860px) {
    .ptk-profile-summary {
        margin-top: -50px;
        padding: 0 14px 4px;
        gap: 14px;
    }

    .ptk-profile-avatar img {
        width: 92px;
        height: 92px;
    }

    .ptk-profile-meta h2,
    .ptk-profile-meta h3 {
        font-size: 21px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 640px) {
    .ptk-profile-cover {
        min-height: 180px;
        border-radius: 18px;
    }

    .ptk-profile-cover img {
        height: 210px;
    }

    .ptk-profile-summary {
        margin-top: -42px;
        padding: 0 10px 2px;
        gap: 12px;
        align-items: center;
        flex-direction: column;
    }

    .ptk-profile-avatar img {
        width: 84px;
        height: 84px;
    }

    .ptk-profile-meta {
        width: 100%;
        text-align: center;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .ptk-profile-badge {
        justify-content: center;
    }

    .ptk-profile-socials {
        justify-content: center;
    }

    .ptk-profile-meta h2,
    .ptk-profile-meta h3 {
        font-size: 20px;
    }
}


/* =========================
   PROFILE BELL TUNE
========================= */
.ptk-profile-header-tools {
    position: absolute;
    top: 12px;
    right: 27px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.ptk-notification-bell {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;

    border-radius: 12px!important;
    border: 1px solid rgba(255,255,255,0.10);

    background: rgba(255,255,255,.04);
    color: #fff;

    backdrop-filter: blur(10px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);

    transition: all 0.2s ease;
}

.ptk-notification-bell:hover {
    background: rgba(20,20,20,0.78);
    border-color: rgba(196,154,61,0.35);
    transform: translateY(-1px);
}

.ptk-bell-icon {
    font-size: 18px;
}

.ptk-bell-count,
.ptk-noti-count {
    top: -4px;
    right: -4px;
}

/* mobile */
@media (max-width: 640px) {
    .ptk-profile-header-tools {
        top: 0px;
        right: 10px;
    }

    .ptk-notification-bell {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
}

/* =========================================================
   📌 BUTTON BASE (PTK UI)
========================================================= */
.ptk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;
    padding: 6px 12px;

    border-radius: 8px;
    border: 1px solid #2f2f2f;

    background: #1a1a1a;
    color: #fff;

    font-weight: 600;
    text-decoration: none;
    cursor: pointer;

    transition: all 0.2s ease;
}

.ptk-btn:hover {
    background: #222;
    border-color: #c49a3d;
    color: #fff;
}


/* =========================================================
   📌 PROFILE TAB SCROLL FIX (APP UX)
========================================================= */
#ptk-profile-tabs-anchor {
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  scroll-margin-top: 120px;
}

/* Mobile */
@media (max-width: 768px) {
  #ptk-profile-tabs-anchor {
    scroll-margin-top: 110px;
  }
}


/* =========================================================
   PTK PROFILE VIP CARD
========================================================= */

.ptkpd-vip-card{
  margin:16px 0;
  padding:16px;
  border:1px solid rgba(196,154,61,.32);
  border-radius:18px;
  background:linear-gradient(135deg,rgba(196,154,61,.18),rgba(255,255,255,.035));
  color:#f5e8c7;
  box-shadow:0 12px 28px rgba(0,0,0,.16);
}

.ptkpd-vip-card h3{
  margin:0 0 6px;
  color:#f5d061;
  font-size:18px;
}

.ptkpd-vip-card p{
  margin:0 0 10px;
  line-height:1.6;
  color:#e8d9b5;
}

.ptkpd-vip-card .ptkpd-vip-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:9px 14px;
  border-radius:999px;
  background:#c49a3d;
  color:#17110a!important;
  font-weight:900;
  text-decoration:none!important;
}

.ptkpd-vip-card details{
  margin-top:10px;
}

.ptkpd-vip-card summary{
  cursor:pointer;
  font-weight:800;
  color:#f5d061;
}

.ptkpd-vip-info{
  margin-top:10px;
  padding:12px;
  border-radius:14px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
  line-height:1.7;
}

@media(max-width:768px){
  .ptkpd-vip-card{
    padding:14px;
    border-radius:16px;
  }

  .ptkpd-vip-card .ptkpd-vip-btn{
    width:100%;
  }
}

/* =========================================================
   PTK VIP UPGRADE FORM - LUXURY FINAL
========================================================= */

.ptk-vip-upgrade-wrap{
  max-width:980px;
  margin:0 auto;
  padding:4px;
}

.ptk-vip-upgrade-card{
  position:relative;
  overflow:hidden;

  padding:26px;
  border-radius:26px;

  background:
    radial-gradient(circle at top right, rgba(245,208,97,.18), transparent 34%),
    radial-gradient(circle at left bottom, rgba(196,154,61,.10), transparent 30%),
    linear-gradient(180deg, rgba(24,20,13,.96), rgba(10,9,7,.94));

  border:1px solid rgba(245,208,97,.28);

  box-shadow:
    0 18px 46px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.ptk-vip-upgrade-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.055), transparent 42%);
  pointer-events:none;
}

.ptk-vip-upgrade-card::after{
  content:"VIP";
  position:absolute;
  top:18px;
  right:18px;

  padding:6px 10px;
  border-radius:999px;

  background:rgba(245,208,97,.14);
  border:1px solid rgba(245,208,97,.30);

  color:#f5d061;
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
}

.ptk-vip-upgrade-form,
.ptk-vip-upgrade-box{
  position:relative;
  z-index:2;
}

.ptk-vip-upgrade-box h3{
  margin:0 0 8px;
  padding-right:70px;

  color:#f5d061;

  font-size:28px;
  line-height:1.2;
  font-weight:950;
  letter-spacing:-.02em;
}

.ptk-vip-upgrade-box > p{
  margin:0 0 20px;

  color:#dfd0aa;

  font-size:15px;
  line-height:1.75;
}

/* =========================================================
   FIELDS
========================================================= */

.ptk-vip-upgrade-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.ptk-vip-upgrade-field{
  margin:0 0 14px;
}

.ptk-vip-upgrade-field label{
  display:block;
  margin:0 0 7px;

  color:#f1e2b8;

  font-size:13px;
  font-weight:850;
}

.ptk-vip-upgrade-field input,
.ptk-vip-upgrade-field select,
.ptk-vip-upgrade-field textarea{
  width:100%;
  box-sizing:border-box;

  min-height:48px;
  padding:12px 14px;

  border-radius:14px;

  background:rgba(0,0,0,.34);
  border:1px solid rgba(245,208,97,.16);

  color:#fff;

  font-size:14px;
  line-height:1.45;

  outline:none;

  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

/* ช่องเลือกแพ็กเกจ */
.ptk-vip-upgrade-field select{
  appearance:none;
  -webkit-appearance:none;

  background:
    linear-gradient(180deg, rgba(35,29,18,.98), rgba(17,14,10,.98));

  color:#fff8dc;

  border-color:rgba(245,208,97,.28);

  cursor:pointer;
}

/* option ใน dropdown */
.ptk-vip-upgrade-field select option{
  background:#15110a;
  color:#fff8dc;
}

.ptk-vip-upgrade-field textarea{
  min-height:110px;
  resize:vertical;
}

.ptk-vip-upgrade-field input::placeholder,
.ptk-vip-upgrade-field textarea::placeholder{
  color:rgba(255,255,255,.42);
}

.ptk-vip-upgrade-field input:focus,
.ptk-vip-upgrade-field select:focus,
.ptk-vip-upgrade-field textarea:focus{
  background:rgba(0,0,0,.42);
  border-color:rgba(245,208,97,.58);
  box-shadow:0 0 0 3px rgba(245,208,97,.10);
}

/* file input */
.ptk-vip-upgrade-field input[type="file"]{
  padding:11px;
  color:#e8d9b5;
}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

.ptk-vip-upgrade-btn{
  width:100%;
  min-height:52px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin-top:4px;
  padding:12px 18px;

  border:0;
  border-radius:999px;

  background:
    linear-gradient(135deg, #f5d061, #c49a3d 58%, #9f7627);

  color:#17110a!important;

  font-size:15px;
  font-weight:950;
  line-height:1;

  text-decoration:none!important;
  cursor:pointer;

  box-shadow:
    0 12px 26px rgba(196,154,61,.28),
    inset 0 1px 0 rgba(255,255,255,.35);

  transition:transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.ptk-vip-upgrade-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
  box-shadow:
    0 16px 34px rgba(196,154,61,.34),
    inset 0 1px 0 rgba(255,255,255,.42);
}

.ptk-vip-upgrade-btn:active{
  transform:scale(.985);
}

/* =========================================================
   NOTICE / CURRENT VIP / LOGIN
========================================================= */

.ptk-vip-upgrade-notice,
.ptk-vip-upgrade-login,
.ptk-vip-upgrade-box.is-current-vip{
  max-width:720px;
  margin:0 auto 16px;
  padding:16px;

  border-radius:18px;

  background:rgba(16,13,9,.92);
  border:1px solid rgba(245,208,97,.20);

  color:#f5e8c7;
  line-height:1.7;

  box-shadow:0 12px 30px rgba(0,0,0,.20);
}

.ptk-vip-upgrade-notice.is-success{
  border-color:rgba(46,204,113,.35);
  background:rgba(24,80,48,.16);
  color:#d9ffe7;
}

.ptk-vip-upgrade-notice.is-error{
  border-color:rgba(239,68,68,.35);
  background:rgba(127,29,29,.16);
  color:#ffe0e0;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

  .ptk-vip-upgrade-wrap{
    padding:0;
  }

  .ptk-vip-upgrade-card{
    padding:18px;
    border-radius:20px;
  }

  .ptk-vip-upgrade-card::after{
    top:14px;
    right:14px;
    font-size:11px;
  }

  .ptk-vip-upgrade-box h3{
    font-size:23px;
    padding-right:62px;
  }

  .ptk-vip-upgrade-box > p{
    font-size:14px;
    line-height:1.65;
  }

  .ptk-vip-upgrade-grid{
    grid-template-columns:1fr;
    gap:0;
  }

  .ptk-vip-upgrade-field{
    margin-bottom:12px;
  }

  .ptk-vip-upgrade-btn{
    min-height:50px;
  }
}

/* =========================================================
   PTK VIP PLAN CARDS - MATCH REAL HTML
========================================================= */

.ptk-vip-plan-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin:12px 0 10px;
}

.ptk-vip-plan-choice{
  display:block;
  cursor:pointer;
  min-width:0;
}

.ptk-vip-plan-choice input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.ptk-vip-plan-card{
  position:relative;
  min-height:168px;
  height:100%;
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(245,208,97,.20);
  background:
    radial-gradient(circle at top right,rgba(245,208,97,.10),transparent 42%),
    linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  display:flex;
  flex-direction:column;
  transition:.18s ease;
}

.ptk-vip-plan-choice:hover .ptk-vip-plan-card,
.ptk-vip-plan-choice input:checked + .ptk-vip-plan-card{
  border-color:rgba(245,208,97,.62);
  box-shadow:
    0 14px 30px rgba(196,154,61,.18),
    inset 0 1px 0 rgba(255,255,255,.10);
  transform:translateY(-2px);
}

.ptk-vip-plan-card strong{
  color:#fff2c8;
  font-size:17px;
  font-weight:950;
  line-height:1.25;
}

.ptk-vip-plan-price{
  display:block;
  margin:12px 0 8px;
  color:#f5d061;
  font-size:28px;
  font-weight:950;
  line-height:1.1;
}

.ptk-vip-plan-card small{
  color:#d9c99e;
  font-size:13px;
  line-height:1.6;
}

.ptk-vip-plan-badge{
  align-self:flex-start;
  margin-bottom:10px;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(245,208,97,.15);
  border:1px solid rgba(245,208,97,.30);
  color:#f5d061;
  font-size:11px;
  font-weight:950;
}

/* =========================================================
   PTK VIP BANK - MATCH REAL HTML
========================================================= */

.ptk-vip-bank-box{
  margin:20px 0;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(245,208,97,.20);
  background:rgba(0,0,0,.22);
}

.ptk-vip-bank-head{
  margin-bottom:14px;
}

.ptk-vip-bank-head strong{
  display:block;
  color:#f5d061;
  font-size:17px;
  font-weight:950;
}

.ptk-vip-bank-head span{
  display:block;
  margin-top:4px;
  color:#d9c99e;
  font-size:13px;
  line-height:1.6;
}

.ptk-vip-bank-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.ptk-vip-bank-item{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
}

.ptk-vip-bank-item > strong{
  color:#fff2c8;
  font-size:16px;
  font-weight:950;
}

.ptk-vip-bank-item span,
.ptk-vip-bank-item small{
  color:#d7c9a5;
  font-size:13px;
  line-height:1.55;
}

.ptk-vip-bank-number b{
  color:#f5d061;
  font-size:18px;
  letter-spacing:.03em;
}

.ptk-vip-copy-bank{
  margin-top:8px;
  min-height:38px;
  border-radius:999px;
  border:1px solid rgba(245,208,97,.32);
  background:rgba(245,208,97,.12);
  color:#f5d061;
  font-weight:900;
  cursor:pointer;
}

.ptk-vip-copy-bank:hover{
  background:rgba(245,208,97,.20);
}

.ptk-vip-copy-bank.is-copied{
  background:rgba(46,204,113,.18);
  border-color:rgba(46,204,113,.38);
  color:#d9ffe7;
}

@media(max-width:900px){
  .ptk-vip-plan-cards,
  .ptk-vip-bank-list{
    grid-template-columns:1fr;
  }

  .ptk-vip-plan-card{
    min-height:auto;
  }
}

