.product-detail-page {
  min-height: 100vh;
  padding: 2rem 0 4rem;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Breadcrumbs */
.product-breadcrumbs {
  padding: 15px 0px;
}

.product-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.product-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-breadcrumbs li:not(:last-child)::after {
  content: '/';
  color: #39ff6a;
}

.product-breadcrumbs a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-breadcrumbs a:hover {
  color: #39ff6a;
}

.product-breadcrumbs li:last-child {
  color: #39ff6a;
}

/* Product Main Grid */
.product-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .product-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  aspect-ratio: 4 / 3;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(57, 255, 106, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.gallery-placeholder {
  text-align: center;
  color: #a0a0a0;
  padding: 3rem;
}

.gallery-placeholder svg {
  margin-bottom: 1rem;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gallery-thumb-item {
  width: 80px;
  height: 80px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(57, 255, 106, 0.15);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-thumb-item:hover,
.gallery-thumb-item.active {
  border-color: #39ff6a;
  transform: translateY(-2px);
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-category {
  margin-bottom: 1rem;
}

.product-category a {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #39ff6a;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  background: rgba(57, 255, 106, 0.1);
  border-radius: 20px;
}

.product-title {
  font-family: var(--font-display, 'Syne', 'Poppins', sans-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .product-title {
    font-size: 2.5rem;
  }
}

/* Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  width: 20px;
  height: 20px;
}

.star-full {
  fill: #39ff6a;
}

.star-half {
  fill: #39ff6a;
}

.star-empty {
  stroke: #39ff6a;
}

.rating-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.reviews-count {
  font-size: 0.8rem;
  color: #a0a0a0;
}

/* Pricing */
.product-pricing-detail {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(57, 255, 106, 0.1);
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.price-current {
  font-family: var(--font-display, 'Syne', 'Poppins', sans-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #39ff6a;
}

.price-original {
  font-size: 1.2rem;
  color: #a0a0a0;
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.8rem;
  font-weight: 600;
  color: #39ff6a;
  background: rgba(57, 255, 106, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
}

.price-note {
  font-size: 0.7rem;
  color: #a0a0a0;
}

/* Features */
.product-features {
  margin-bottom: 1.5rem;
}

.features-title {
  font-family: var(--font-display, 'Syne', 'Poppins', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #a0a0a0;
}

.features-list li svg {
  flex-shrink: 0;
}

/* ADD TO CARD  */
.bc-cart-input {
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 5px;
}

.product-actions {
  display: flex;
  flex-direction: row;
  margin-bottom: 35px;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.product-actions>button {
  flex: 1;
  background: var(--green-neon);
  color: var(--green-deep) !important;
  padding: 0px;
  border-radius: 2px;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 20px rgba(57, 255, 106, 0.3);
  border: none;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 40px;
}

.product-actions>button>svg {
  height: 25px;
  width: 25px;
}

.bc-cart-input>input {
  flex: 1;
  background: #101e16;
  color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 20px rgba(57, 255, 106, 0.3);
  border: none;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  padding: 0px;
  max-width: 135px;
}

.bc-cart-input>button {
  flex: 1;
  background: var(--green-neon);
  color: var(--green-deep) !important;
  padding: 0px;
  border-radius: 2px;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 20px rgba(57, 255, 106, 0.3);
  border: none;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 40px;
  flex-shrink: 0;
  width: 40px;
}

/* Variants */
.product-variants {
  margin-bottom: 1.5rem;
}

.variant-group {
  margin-bottom: 1rem;
}

.variant-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variant-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(57, 255, 106, 0.2);
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.variant-btn:hover,
.variant-btn.active {
  border-color: #39ff6a;
  color: #39ff6a;
}

/* Description Tabs */
.product-description-section {
  margin-bottom: 4rem;
}

.description-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid rgba(57, 255, 106, 0.2);
  margin-bottom: 2rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a0a0a0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn:hover {
  color: #ffffff;
}

.tab-btn.active {
  color: #39ff6a;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #39ff6a;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.product-description {
  color: #a0a0a0;
  line-height: 1.8;
  font-size: 0.9rem;
}

.product-description p {
  margin-bottom: 1rem;
}

/* Specs Grid */
.product-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .product-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(57, 255, 106, 0.1);
}

.spec-label {
  font-weight: 600;
  color: #ffffff;
}

.spec-value {
  color: #39ff6a;
}

/* Details Table */
.product-details-table {
  overflow-x: auto;
}

.product-details-table table {
  width: 100%;
  border-collapse: collapse;
}

.product-details-table th,
.product-details-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(57, 255, 106, 0.1);
}

.product-details-table th {
  font-weight: 600;
  color: #ffffff;
  width: 30%;
}

.product-details-table td {
  color: #a0a0a0;
}

/* Related Products */
.related-products-section {
  margin-top: 3rem;
}

.related-title {
  font-family: var(--font-display, 'Syne', 'Poppins', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .related-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.related-product-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(57, 255, 106, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.related-product-card:hover {
  transform: translateY(-5px);
  border-color: #39ff6a;
}

.related-product-link {
  text-decoration: none;
  display: block;
}

.related-product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.related-product-card:hover .related-product-image img {
  transform: scale(1.05);
}

.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.related-product-name {
  font-family: var(--font-display, 'Syne', 'Poppins', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin: 1rem 1rem 0.5rem;
  text-transform: uppercase;
}

.related-product-price {
  margin: 0 1rem 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.related-product-price .price {
  font-size: 1rem;
  font-weight: 700;
  color: #39ff6a;
}

.related-product-price .price-original {
  font-size: 0.8rem;
  color: #a0a0a0;
  text-decoration: line-through;
}

/* Responsive */
@media (max-width: 768px) {
  .product-container {
    padding: 0 1rem;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .price-current {
    font-size: 1.5rem;
  }

  .gallery-thumb-item {
    width: 60px;
    height: 60px;
  }

  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}