/* =========================================================
   PTK AMULET SYSTEM
   MERGED CLEAN VERSION
   - รวมสองชุดให้เหลือไฟล์เดียว
   - ตัดโค้ดซ้ำ
   - แยก global / profile / single ชัดเจน
   - คงพฤติกรรมเดิม + profile dark gold
========================================================= */


/* =========================================================
   1) BASE LAYOUT / WRAPPERS
========================================================= */
.ptk-archive-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
  flex-wrap:wrap;
}

.ptk-btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  border:1px solid #ddd;
}

.ptk-btn-secondary{
  opacity:.85;
}

.ptk-amulet-form-wrap,
.ptk-amulet-archive-wrap,
.ptk-my-amulets-wrap{
  margin:20px 0;
}

.ptk-amulet-single{
  margin:20px 0;
}

.ptk-amulet-single-wrap{
  margin:24px 0;
}


/* =========================================================
   2) FORM FIELDS
========================================================= */
.ptk-field{
  margin-bottom:16px;
}

.ptk-field label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
}

.ptk-field input,
.ptk-field textarea,
.ptk-field select{
  width:100%;
  padding:10px 12px;
  border:1px solid #ddd;
  border-radius:10px;
  box-sizing:border-box;
}

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


/* =========================================================
   3) GLOBAL ARCHIVE / CARD GRID
========================================================= */
.ptk-amulet-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.ptk-amulet-card{
  border:1px solid #eee;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}

.ptk-amulet-thumb{
  display:block;
  aspect-ratio:1 / 1;
  background:#f7f7f7;
}

.ptk-amulet-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ptk-no-thumb{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  min-height:220px;
}

.ptk-amulet-body{
  padding:12px;
}

.ptk-amulet-title{
  margin:0 0 8px;
}

.ptk-amulet-owner,
.ptk-amulet-price,
.ptk-amulet-status{
  margin-bottom:6px;
}


/* =========================================================
   4) PROFILE TAB CARD
   DARK + GOLD THEME
   ใช้กับหน้าโปรไฟล์ > พระของฉัน
========================================================= */
.ptk-profile .ptk-amulet-grid{
  grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
  gap:16px;
}

.ptk-profile .ptk-amulet-card{
  background:#111;
  border:1px solid #222;
  border-radius:14px;
  overflow:hidden;
  color:#fff;
}

.ptk-profile .ptk-amulet-thumb{
  background:#0f0f0f;
}

.ptk-profile .ptk-no-thumb{
  background:#1a1a1a;
  color:#bbb;
  font-size:13px;
}

.ptk-profile .ptk-amulet-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.ptk-profile .ptk-amulet-title{
  margin:0;
  font-size:15px;
  line-height:1.45;
  font-weight:600;
}

.ptk-profile .ptk-amulet-title a{
  color:#fff !important;
  text-decoration:none;
}

.ptk-profile .ptk-amulet-title a:hover{
  color:#f5d061 !important;
}

.ptk-profile .ptk-amulet-owner{
  display:flex;
  align-items:center;
  gap:4px;
  font-size:13px;
  color:#aaa;
  margin-bottom:0;
}

.ptk-profile .ptk-amulet-cats{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:2px 0 6px;
}

.ptk-profile .ptk-amulet-cat-badge{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px 8px;
  border-radius:999px;
  background:#222;
  color:#ddd !important;
  font-size:12px;
  line-height:1.2;
  text-decoration:none !important;
  border:1px solid #2e2e2e;
}

.ptk-profile .ptk-amulet-cat-badge:hover{
  background:#2d2d2d;
  color:#fff !important;
}

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

.ptk-profile .ptk-amulet-price{
  margin-top:4px;
  margin-bottom:0;
  font-size:20px;
  font-weight:800;
  color:#f5d061;
  display:inline-block;
  padding:6px 10px;
  border-radius:8px;
  background:linear-gradient(135deg, #2a2110, #1a1408);
  border:1px solid #5a4715;
  letter-spacing:.3px;
}

.ptk-profile .ptk-amulet-price del{
  font-size:13px;
  color:rgba(255,255,255,.5);
  margin-right:6px;
  font-weight:400;
}

.ptk-profile .ptk-amulet-status{
  display:inline-block;
  margin-top:6px;
  margin-bottom:0;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  background:#1f1f1f;
  border:1px solid #333;
  color:#eaeaea;
}

.ptk-profile .ptk-amulet-status.is-sold{
  background:#3a0d0d;
  border-color:#7a1f1f;
  color:#ffb3b3;
}

.ptk-profile .ptk-amulet-status.is-available{
  background:#0f2a1a;
  border-color:#1f5a3a;
  color:#8ef5b0;
}

.ptk-profile .ptk-amulet-card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.ptk-profile .ptk-amulet-card-actions .ptk-btn,
.ptk-profile .ptk-amulet-card-actions button.ptk-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  font-size:13px;
  border-radius:8px;
  text-decoration:none;
}

.ptk-profile .ptk-inline-form{
  margin:0;
}


/* =========================================================
   5) GLOBAL CATEGORY CHIPS / NOTICE / PLACEHOLDER
========================================================= */
.ptk-amulet-cat-list{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.ptk-cat-chip{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid #ddd;
  text-decoration:none;
}

.ptk-cat-chip.active{
  font-weight:700;
}

.ptk-amulet-notice{
  padding:12px 14px;
  border-radius:10px;
  margin-bottom:16px;
}

.ptk-amulet-notice.success{
  background:#eef9f0;
}

.ptk-amulet-notice.error{
  background:#fff1f1;
}

.ptk-amulet-media-placeholder{
  padding:14px;
  border:1px dashed #ccc;
  border-radius:12px;
  margin-bottom:16px;
}


/* =========================================================
   6) GLOBAL AMULET META
========================================================= */
.ptk-amulet-cats{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:8px;
}

.ptk-amulet-cat-badge{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px 8px;
  border-radius:999px;
  background:#f3f3f3;
  font-size:12px;
  line-height:1.2;
  border:1px solid #e7e7e7;
  color:inherit;
  text-decoration:none;
}

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


/* =========================================================
   7) SIMPLE SINGLE IMAGE / GALLERY (LEGACY SUPPORT)
========================================================= */
.ptk-amulet-main-image img{
  width:100%;
  border-radius:12px;
}

.ptk-amulet-gallery{
  display:flex;
  gap:10px;
  margin:10px 0;
}

.ptk-amulet-gallery img{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:8px;
}

.ptk-amulet-info{
  margin-top:10px;
}


/* =========================================================
   8) IMAGE PREVIEW / UPLOAD MANAGER
========================================================= */
#ptk_amulet_preview{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:12px;
}

.ptk-img-item{
  width:140px;
  border:1px solid #ddd;
  border-radius:12px;
  padding:8px;
  background:#fff;
}

.ptk-img-item img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:8px;
  display:block;
}

.ptk-img-item.is-featured{
  border-color:#d4af37;
  box-shadow:0 0 0 2px rgba(212, 175, 55, .25);
}

.ptk-img-meta{
  margin-top:6px;
  font-size:12px;
  opacity:.8;
}

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

.ptk-img-btn{
  flex:1;
  padding:6px 8px;
  border:1px solid #ddd;
  border-radius:8px;
  background:#f7f7f7;
  cursor:pointer;
  font-size:12px;
}

.ptk-img-btn:hover{
  opacity:.9;
}


/* =========================================================
   9) SINGLE AMULET SHOP STYLE
========================================================= */
.ptk-amulet-single-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap:28px;
  align-items:start;
}

.ptk-amulet-gallery-panel,
.ptk-amulet-info-panel,
.ptk-amulet-single-description{
  background:#fff;
  border:1px solid #ececec;
  border-radius:18px;
  padding:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
  transition:.2s ease;
}

.ptk-amulet-gallery-panel:hover,
.ptk-amulet-info-panel:hover{
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}

.ptk-amulet-main-stage{
  position:relative;
}

.ptk-amulet-main-image-btn{
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
}

.ptk-amulet-main-image-btn img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:16px;
  display:block;
  background:#f7f7f7;
  transition:transform .3s ease;
}

.ptk-amulet-main-image-btn:hover img{
  transform:scale(1.03);
}

.ptk-amulet-main-empty{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:360px;
  background:#f7f7f7;
  border-radius:16px;
  color:#666;
}

.ptk-amulet-thumbs{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:10px;
  margin-top:14px;
}

.ptk-amulet-thumb-btn{
  padding:0;
  border:1px solid #ddd;
  border-radius:12px;
  background:#fff;
  overflow:hidden;
  cursor:pointer;
  transition:.2s ease;
}

.ptk-amulet-thumb-btn img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
}

.ptk-amulet-thumb-btn.is-active{
  border-color:#111;
  box-shadow:0 0 0 2px rgba(0,0,0,.08);
}

.ptk-amulet-thumb-btn:hover{
  transform:scale(1.04);
}


/* =========================================================
   10) SINGLE CONTENT / TYPOGRAPHY / META
========================================================= */
.ptk-amulet-single-title{
  margin:0 0 14px;
  font-size:28px;
  line-height:1.25;
  font-weight:800;
  letter-spacing:-.3px;
}

.ptk-amulet-single-price{
  font-size:26px;
  font-weight:700;
  margin-bottom:14px;
  color:#111;
}

.ptk-amulet-single-price del{
  color:#888;
  margin-right:8px;
  font-size:14px;
}

.ptk-amulet-single-price ins{
  text-decoration:none;
  color:#000;
}

.ptk-amulet-single-status,
.ptk-amulet-single-owner,
.ptk-amulet-single-cats{
  margin-bottom:12px;
  font-size:15px;
}

.ptk-amulet-single-status{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#f2f2f2;
}

.ptk-label{
  font-weight:700;
  margin-right:6px;
}

.ptk-amulet-single-owner a{
  text-decoration:none;
  font-weight:600;
}

.ptk-amulet-single-owner a:hover{
  text-decoration:underline;
}

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

.ptk-amulet-single-actions .ptk-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  font-weight:600;
  transition:.2s;
}

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

.ptk-amulet-single-description{
  margin-top:24px;
}

.ptk-amulet-description-content{
  line-height:1.8;
}

.ptk-amulet-description-content p{
  margin-bottom:14px;
}


/* =========================================================
   11) GLOBAL ACTION BUTTONS
========================================================= */
.ptk-amulet-card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.ptk-amulet-card-actions .ptk-btn{
  padding:8px 12px;
  font-size:14px;
}


/* =========================================================
   12) BACK BUTTON
========================================================= */
.ptk-amulet-back-nav{
  margin-bottom:14px;
}

.ptk-back-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:14px;
  text-decoration:none;
  transition:.2s;
}

.ptk-back-btn:hover{
  background:#000;
  transform:translateY(-1px);
}


/* =========================================================
   13) LIGHTBOX
========================================================= */
.ptk-amulet-lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:99999;
}

.ptk-amulet-lightbox.is-open{
  display:block;
}

.ptk-amulet-lightbox-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.82);
}

.ptk-amulet-lightbox-dialog{
  position:relative;
  z-index:2;
  width:min(92vw, 1100px);
  height:min(88vh, 900px);
  margin:4vh auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ptk-lightbox-image-wrap{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:auto;
}

#ptk_amulet_lightbox_image{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  cursor:zoom-in;
  transition:transform .2s ease;
}

#ptk_amulet_lightbox_image.is-zoomed{
  transform:scale(1.8);
  cursor:zoom-out;
}

.ptk-lightbox-close,
.ptk-lightbox-nav{
  position:absolute;
  z-index:3;
  border:0;
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  border-radius:999px;
  backdrop-filter:blur(4px);
}

.ptk-lightbox-close{
  top:12px;
  right:12px;
  width:46px;
  height:46px;
  font-size:28px;
  line-height:1;
}

.ptk-lightbox-nav{
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  font-size:34px;
  line-height:1;
}

.ptk-lightbox-nav.prev{
  left:12px;
}

.ptk-lightbox-nav.next{
  right:12px;
}

body.ptk-lightbox-open{
  overflow:hidden;
}


/* =========================================================
   14) RELATED SECTION
========================================================= */
.ptk-related-wrap{
  margin-top:40px;
}

.ptk-related-wrap h3{
  margin-bottom:14px;
  font-size:20px;
}

.ptk-rel-slider{
  position:relative;
  padding:0 44px;
}

.ptk-rel-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding-bottom:10px;
}

.ptk-rel-track::-webkit-scrollbar{
  display:none;
}

.ptk-rel-item{
  flex:0 0 calc((100% - 32px) / 3);
  min-width:220px;
  background:#fff;
  border-radius:16px;
  border:1px solid #eee;
  overflow:hidden;
  transition:.2s;
}

.ptk-rel-item:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 26px rgba(0,0,0,.08);
}

.ptk-rel-item img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
}

.ptk-rel-item div{
  padding:10px;
  font-size:14px;
}

.ptk-rel-prev,
.ptk-rel-next{
  position:absolute;
  top:40%;
  transform:translateY(-50%);
  border:0;
  background:#000;
  color:#fff;
  width:38px;
  height:38px;
  border-radius:999px;
  cursor:pointer;
  z-index:2;
}

.ptk-rel-prev{
  left:0;
}

.ptk-rel-next{
  right:0;
}


/* =========================================================
   15) RESPONSIVE
========================================================= */
@media (max-width:980px){
  .ptk-amulet-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ptk-amulet-single-grid{
    grid-template-columns:1fr;
  }

  .ptk-amulet-thumbs{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }

  .ptk-amulet-single-title{
    font-size:24px;
  }

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

  .ptk-rel-item{
    flex:0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width:640px){
  .ptk-grid-2,
  .ptk-amulet-grid{
    grid-template-columns:1fr;
  }

  .ptk-amulet-gallery-panel,
  .ptk-amulet-info-panel,
  .ptk-amulet-single-description{
    padding:14px;
    border-radius:14px;
  }

  .ptk-amulet-thumbs{
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:8px;
  }

  .ptk-lightbox-nav{
    width:42px;
    height:42px;
    font-size:28px;
  }

  .ptk-lightbox-close{
    width:40px;
    height:40px;
    font-size:24px;
  }

  .ptk-rel-slider{
    padding:0 36px;
  }

  .ptk-rel-item{
    flex:0 0 85%;
    min-width:85%;
  }
}

/* =========================================================
   16) PTK MAGNIFIER (DESKTOP)
   SAFE MODE ADD
========================================================= */
.ptk-zoom-container{
  position:relative;
}

.ptk-magnifier-lens{
  position:absolute;
  top:0;
  left:0;
  width:150px;
  height:150px;
  border-radius:50%;
  pointer-events:none;
  display:none;
  z-index:12;
  background-repeat:no-repeat;
  border:2px solid rgba(255,255,255,.92);
  box-shadow:
    0 10px 30px rgba(0,0,0,.18),
    0 0 0 1px rgba(0,0,0,.08);
  backdrop-filter:blur(1px);
}

.ptk-magnifier-lens.is-active{
  display:block;
}


/* =========================================================
   17) PTK LIGHTBOX ZOOM CONTROLS
   SAFE MODE ADD
========================================================= */
.ptk-lightbox-zoom-controls{
  position:absolute;
  top:12px;
  left:12px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.ptk-lightbox-zoom-btn{
  min-width:44px;
  height:44px;
  padding:0 14px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  backdrop-filter:blur(4px);
  font-size:15px;
  font-weight:700;
  line-height:1;
}

.ptk-lightbox-zoom-btn:hover{
  background:rgba(255,255,255,.18);
}

.ptk-lightbox-zoom-btn.is-indicator{
  cursor:default;
  min-width:58px;
}

.ptk-lightbox-zoom-btn.is-reset{
  min-width:72px;
  font-size:13px;
}


/* =========================================================
   18) PTK LIGHTBOX PAN / DRAG FEEL
   SAFE MODE ADD
========================================================= */
.ptk-lightbox-image-wrap{
  overflow:hidden;
  position:relative;
  touch-action:none;
}

#ptk_amulet_lightbox_image{
  transform-origin:center center;
  will-change:transform;
  user-select:none;
  -webkit-user-drag:none;
  touch-action:none;
}

#ptk_amulet_lightbox_image.is-zoomed{
  cursor:grab;
}

#ptk_amulet_lightbox_image.is-zoomed:active{
  cursor:grabbing;
}

#ptk_amulet_lightbox_image.is-animating{
  transition:transform .22s ease;
}


/* =========================================================
   19) DEVICE RULES
   SAFE MODE ADD
========================================================= */
@media (hover:none), (pointer:coarse){
  .ptk-magnifier-lens{
    display:none !important;
  }

  .ptk-amulet-main-image-btn{
    cursor:pointer;
  }
}

@media (max-width:640px){
  .ptk-lightbox-zoom-controls{
    top:10px;
    left:10px;
    right:56px;
    gap:6px;
  }

  .ptk-lightbox-zoom-btn{
    min-width:40px;
    height:40px;
    padding:0 12px;
    font-size:14px;
  }

  .ptk-lightbox-zoom-btn.is-indicator{
    min-width:52px;
  }

  .ptk-lightbox-zoom-btn.is-reset{
    min-width:64px;
    font-size:12px;
  }
}

/* =========================
   PTK AMULET SHOP (SELLER PAGE)
   SAFE MODE ADD
========================= */

/* WRAP */
.ptk-amulet-shop {
  margin: 20px 0;
}

/* HEADER */
.ptk-amulet-shop__header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px;
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
}

.ptk-amulet-shop__avatar img {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
}

.ptk-amulet-shop__owner-name {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.ptk-amulet-shop__owner-meta {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 8px;
}

.ptk-amulet-shop__owner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* GRID */
.ptk-amulet-shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* CARD (reuse ของเดิม + เพิ่มเฉพาะที่ขาด) */
.ptk-amulet-shop__card {
  position: relative;
}

/* IMAGE */
.ptk-amulet-shop__thumb-link {
  display: block;
  position: relative;
}

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

.ptk-amulet-shop__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  background: #1a1a1a;
  color: #888;
}

/* BADGE */
.ptk-amulet-shop__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
}

/* CONTENT */
.ptk-amulet-shop__content {
  padding: 12px;
  background: #111;
  color: #fff;
}

.ptk-amulet-shop__title {
  font-size: 15px;
  margin: 0 0 6px;
}

.ptk-amulet-shop__title a {
  color: #fff;
  text-decoration: none;
}

.ptk-amulet-shop__title a:hover {
  color: #f5d061;
}

/* PRICE */
.ptk-amulet-shop__price {
  margin-bottom: 6px;
}

/* META */
.ptk-amulet-shop__meta {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 6px;
}

/* ACTIONS */
.ptk-amulet-shop__actions {
  margin-top: 10px;
}

.ptk-amulet-shop__view-btn {
  width: 100%;
}

/* PAGINATION */
.ptk-amulet-shop__pagination {
  margin-top: 20px;
}

.ptk-amulet-shop__pagination ul {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.ptk-amulet-shop__pagination a,
.ptk-amulet-shop__pagination span {
  padding: 6px 10px;
  border-radius: 6px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
}

/* EMPTY */
.ptk-amulet-shop__empty {
  padding: 20px;
  text-align: center;
  color: #aaa;
}