@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800&display=swap");
@keyframes float-glow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
}
@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pack-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes cart-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--franchise-color);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 203, 5, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 203, 5, 0);
  }
}
@keyframes toast-in {
  from {
    transform: translateX(130%);
  }
  to {
    transform: translateX(0);
  }
}
body {
  font-family: "Nunito", sans-serif;
}

.pd-wrapper {
  background: #0e0e14;
  color: #f0f0f8;
  --franchise-color: #FFCB05;
  min-height: 100vh;
  padding: 48px 0 80px;
  position: relative;
  overflow: hidden;
}
.pd-wrapper::before, .pd-wrapper::after {
  content: "";
  position: fixed;
  pointer-events: none;
}
.pd-wrapper::before {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 203, 5, 0.09) 0%, transparent 70%);
  pointer-events: none;
  animation: float-glow 18s ease-in-out infinite;
  top: 10%;
  left: -80px;
}
.pd-wrapper::after {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.09) 0%, transparent 70%);
  pointer-events: none;
  animation: float-glow 18s ease-in-out infinite;
  bottom: 15%;
  right: -40px;
  animation-duration: 22s;
  animation-direction: reverse;
}
.pd-wrapper--pokemon {
  --franchise-color: #FFCB05;
}
.pd-wrapper--lol {
  --franchise-color: #C89B3C;
}
.pd-wrapper--yugioh {
  --franchise-color: #7B61FF;
}
.pd-wrapper--naruto {
  --franchise-color: #FF6B1A;
}
.pd-wrapper--spiderman {
  --franchise-color: #E53935;
}

.pd-breadcrumb {
  font-size: 13px;
  color: #8888aa;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.pd-breadcrumb a {
  color: #8888aa;
  text-decoration: none;
  transition: color 0.2s ease;
}
.pd-breadcrumb a:hover {
  color: #f0f0f8;
}
.pd-breadcrumb span {
  color: #55556a;
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.pd-image-panel {
  position: sticky;
  top: 80px;
  animation: fade-slide-up 0.5s 0s ease both;
}
@media (max-width: 768px) {
  .pd-image-panel {
    position: static;
  }
}

.pd-main-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1c1c2e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pd-main-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at 50% 100%, rgba(var(--franchise-color-rgb, 255 203 5), 0.2) 0%, transparent 65%);
  z-index: 0;
}
.pd-main-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 20px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: pack-float 4s ease-in-out infinite;
}
.pd-main-img-wrap:hover img {
  transform: scale(1.05);
  animation-play-state: paused;
}
.pd-main-img-wrap .holo-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.04) 40%, rgba(255, 255, 255, 0) 60%);
  z-index: 2;
  pointer-events: none;
}

.pd-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pd-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  background: #1c1c2e;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pd-thumb:hover, .pd-thumb.active {
  border-color: var(--franchise-color);
  transform: translateY(-2px);
}

.pd-info-col {
  animation: fade-slide-up 0.5s 0.1s ease both;
}

.pd-info-card {
  background: #1c1c2e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
}
.pd-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--franchise-color, #FFCB05), transparent);
  border-radius: 20px 20px 0 0;
}
.pd-info-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.pd-franchise-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--franchise-color);
  border: 1px solid var(--franchise-color);
  border-radius: 99px;
  padding: 4px 12px;
  background: rgba(var(--franchise-color-rgb, 255 203 5), 0.07);
  margin-bottom: 16px;
}

.pd-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  color: #f0f0f8;
  line-height: 1.1;
  margin-bottom: 10px;
}

.pd-stock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pd-stock-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
}
.pd-stock-badge--in-stock {
  background: rgba(74, 222, 128, 0.12);
  color: #4ADE80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}
.pd-stock-badge--out {
  background: rgba(239, 68, 68, 0.12);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.pd-stock-count {
  font-size: 13px;
  color: #8888aa;
}

.pd-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 20px 0;
}

.pd-price-block {
  margin-bottom: 24px;
}

.pd-price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8888aa;
  margin-bottom: 4px;
}

.pd-price-main {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.02em;
  color: var(--franchise-color);
  line-height: 1;
}

.pd-price-bulk {
  font-size: 14px;
  color: #8888aa;
  margin-top: 6px;
}
.pd-price-bulk strong {
  color: #4ADE80;
  font-weight: 700;
}

.pd-select-label {
  display: block;
  font-size: 13px;
  color: #8888aa;
  margin-bottom: 8px;
}

.pd-select {
  width: 100%;
  background: #212135;
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #f0f0f8;
  border-radius: 8px;
  padding: 10px 36px 10px 14px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 600;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin-bottom: 20px;
  transition: border-color 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238888aa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.pd-select:focus {
  outline: none;
  border-color: var(--franchise-color);
}

.pd-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pd-qty-label {
  font-size: 13px;
  color: #8888aa;
  width: 40px;
  flex-shrink: 0;
}

.pd-qty-control {
  display: flex;
  align-items: center;
  background: #212135;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
}

.pd-qty-btn {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #8888aa;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease;
}
.pd-qty-btn:hover:not(:disabled) {
  color: #f0f0f8;
  background: rgba(255, 255, 255, 0.07);
}
.pd-qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pd-qty-input {
  width: 56px;
  height: 44px;
  text-align: center;
  background: none;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  color: #f0f0f8;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  -moz-appearance: textfield;
}
.pd-qty-input::-webkit-inner-spin-button, .pd-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.pd-qty-input:focus {
  outline: none;
}

.pd-total-pill {
  font-size: 14px;
  color: #8888aa;
  background: #212135;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  padding: 6px 14px;
  font-weight: 600;
  white-space: nowrap;
}
.pd-total-pill span {
  color: var(--franchise-color);
}

.pd-cart-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: var(--franchise-color);
  color: #0e0e14;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.pd-cart-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.pd-cart-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.pd-cart-btn:not(:disabled):active {
  transform: translateY(0);
}
.pd-cart-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pd-cart-btn.added {
  animation: cart-pulse 0.6s ease-out;
}

.pd-trust-row {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #8888aa;
}
.pd-trust-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: #4ADE80;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pd-tabs-wrap {
  margin-top: 48px;
  position: relative;
  z-index: 1;
  animation: fade-slide-up 0.5s 0.2s ease both;
}

.pd-tabs-header {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}

.pd-tab-btn {
  background: none;
  border: none;
  color: #8888aa;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}
.pd-tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--franchise-color);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.pd-tab-btn.active {
  color: #f0f0f8;
}
.pd-tab-btn.active::after {
  transform: scaleX(1);
}
.pd-tab-btn:hover {
  color: #f0f0f8;
}

.pd-tab-panel {
  display: none;
  font-size: 15px;
  color: #8888aa;
  line-height: 1.75;
}
.pd-tab-panel.active {
  display: block;
}
.pd-tab-panel ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-tab-panel ol strong {
  color: #f0f0f8;
}

.pd-odds-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.pd-odds-table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #55556a;
  padding: 0 0 12px;
}
.pd-odds-table td {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
}
.pd-odds-table td:last-child {
  text-align: right;
}

.rarity-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.pd-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #1c1c2e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  border-left: 3px solid var(--franchise-color);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #f0f0f8;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  border-radius: 8px;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.pd-toast.show {
  transform: translateX(0);
}
.pd-toast__icon {
  font-size: 18px;
}

body:not(.dark-mode) .pd-wrapper {
  background: #f5f6fa;
  color: #212529;
}
body:not(.dark-mode) .pd-wrapper::before, body:not(.dark-mode) .pd-wrapper::after {
  opacity: 0.5;
}
body:not(.dark-mode) .pd-info-card,
body:not(.dark-mode) .pd-main-img-wrap {
  background: #ffffff;
  border-color: #e5e7eb;
}
body:not(.dark-mode) .pd-title {
  color: #111;
}
body:not(.dark-mode) .pd-price-main {
  color: var(--franchise-color);
}
body:not(.dark-mode) .pd-price-label,
body:not(.dark-mode) .pd-stock-count,
body:not(.dark-mode) .pd-trust-item,
body:not(.dark-mode) .pd-tab-btn,
body:not(.dark-mode) .pd-tab-panel {
  color: #555;
}
body:not(.dark-mode) .pd-select,
body:not(.dark-mode) .pd-qty-control {
  background: #f0f0f0;
  border-color: #ddd;
  color: #111;
}
body:not(.dark-mode) .pd-qty-btn {
  color: #333;
}
body:not(.dark-mode) .pd-qty-input {
  color: #111;
}
body:not(.dark-mode) .pd-tabs-header {
  border-color: #e5e7eb;
}
body:not(.dark-mode) .pd-tab-btn.active {
  color: #111;
}
body:not(.dark-mode) .pd-odds-table td {
  border-color: #e5e7eb;
}/*# sourceMappingURL=product-details.css.map */