x/* Breadcrumb */
.breadcrumb-section {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
}

.breadcrumb a {
  color: #005491;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #2563eb;
}

.breadcrumb .separator {
  color: #6b7280;
}

.breadcrumb .current {
  color: #111827;
  font-weight: 500;
}

/* Product Details Section */
.product-details-section {
  padding: 3rem 0;
}

.product-details-wrapper-new {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Product Images Grid */
.product-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 100%;
}

.product-image-item {
  position: relative;
  background: #f3f4f6;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid #e5e7eb;
}

.product-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.product-image:hover {
  transform: scale(1.02);
}

/* Fixed Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 60px 20px 120px 20px;
  box-sizing: border-box;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
  padding: 12px;
  border-radius: 50%;
  transition: background-color 0.2s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  /* padding: 20px; */
  border-radius: 50%;
  transition: background-color 0.2s;
  z-index: 1001;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.lightbox-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.lightbox-thumbnails {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.lightbox-thumbnail {
  width: 75px;
  height: 75px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}

.lightbox-thumbnail.active {
  border-color: #dc2626;
  transform: scale(1.1);
}

.lightbox-thumbnail:hover {
  transform: scale(1.05);
  border-color: rgba(220, 38, 38, 0.5);
}

.lightbox-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Information */
.product-info {
  display: flex;
  flex-direction: column;
}

.product-category-badge {
  display: inline-block;
  background: #dbeafe;
  color: #005491;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 1rem;
  width: fit-content;
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-model {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.product-description h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.product-description p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 16px;
}

/* Action Buttons */
.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  /* min-width: 160px; */
}

.btn i {
  font-size: 16px;
}

.btn-primary {
  background: #005491;
  color: white;
}

.btn-primary:hover {
  /* background: #2563eb; */
  background: #ac0000;
}

.btn-secondary {
  background: #6b7280;
  color: white;
}

.btn-secondary:hover {
  background: #4b5563;
}

.btn-outline {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background: #f9fafb;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 12px;
  min-width: auto;
}

/* Specifications Section */
.specifications-section {
  padding-bottom: 50px;
  background: #f8fafc;
}

.section-header {
  text-align: left;
  margin-bottom: 25px;
}

.section-header h2 {
  font-size: 25px;
  font-weight: 700;
  color: #005491;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #6b7280;
  font-size: 16px;
}

.specifications-tabs {
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.specifications-tabs .tab-buttons {
  display: flex;
  /* background: linear-gradient(135deg, #1e293b 0%, #334155 100%); */
  background: #ac0000;
  border-bottom: none;
}

.specifications-tabs .tab-btn {
  flex: 1;
  padding: 2.5rem 1.5rem;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  /* border-bottom: 3px solid transparent; */
  border-right: 1px solid #ffffff50;
  border-bottom: 1px solid #ffffff50;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
}

.specifications-tabs .tab-btn i,
.specifications-tabs .tab-btn svg {
  font-size: 18px;
}
.specifications-tabs .tab-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.specifications-tabs .tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.specifications-tabs .tab-btn.active {
  color: white;
  background: rgba(220, 38, 38, 0.2);
  border-bottom-color: #dc2626;
  /* border-bottom-color: #fff; */
  /* border: 4px solid #fff;
  border-top: none; */
}

.specifications-tabs .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, #dc2626, #ef4444); */
  background: #fff;
}

.specifications-tabs .tab-content {
  display: none;
  padding: 0;
}

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

/* Clean Modern Table Design */
.spec-table {
  background: white;
  width: 100%;
}

.spec-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  font-size: 15px;
  line-height: 1.6;
}

.spec-table thead tr {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.spec-table th {
  padding: 1.5rem 2rem;
  text-align: left;
  font-weight: 700;
  color: white;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  /* border: 0.5mm solid #334155; */
  border: 0.5mm solid #ac0000;
  /* border: 0.5mm solid #fff; */
}

.spec-table th.spec-parameter {
  width: 40%;
  /* background: linear-gradient(135deg, #1e293b 0%, #2d3748 100%); */
  background: #ac0000;
  border-right: 1px solid #ffffff50;
}

.spec-table th.spec-value {
  /* background: linear-gradient(135deg, #334155 0%, #475569 100%); */
  background: #ac0000;
}

.spec-table tbody tr {
  transition: all 0.2s ease;
}

.spec-table tbody tr:hover {
  background: #fef2f2;
  transform: translateX(2px);
}

.spec-table td {
  padding: 1.25rem 2rem;
  vertical-align: top;
  border: 0.5mm solid #e2e8f0;
  border-top: none;
  word-wrap: break-word;
}

.spec-table td.spec-parameter {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  font-weight: 600;
  color: #1e293b;
  border-right: 1mm solid #dc2626;
  position: relative;
}

.spec-table td.spec-parameter::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  /* width: 3px;
  background: linear-gradient(180deg, #dc2626, #ef4444); */
}

.spec-table td.spec-value {
  color: #475569;
  background: white;
  font-weight: 500;
}

.spec-table tbody tr:nth-child(even) td.spec-parameter {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.spec-table tbody tr:nth-child(even) td.spec-value {
  background: #fafafa;
}

.spec-table tbody tr:last-child td {
  /* border-bottom: 0.5mm solid #334155; */
}

/* Highlight important values */
.spec-table td.spec-value strong,
.spec-table td.spec-value b {
  color: #dc2626;
  font-weight: 700;
}

/* Related Products */
.related-products-section {
  padding: 3rem 0;
  padding-top: 0px;
  background: white;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.related-product-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.2s;
}

.related-product-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.related-product-image {
  height: 200px;
  background: #f3f4f6;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-product-info {
  padding: 1.5rem;
}

.related-product-info h4 {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  padding: 0;
  margin: 0;
  margin-bottom: 5px;
  line-height: normal;
  letter-spacing: normal;
}

.related-product-model {
  font-size: 14px;
  color: #6b7280;
  font-weight: normal;
  padding: 0;
  margin: 0;
  margin-bottom: 5px;
  line-height: normal;
  letter-spacing: normal;
}

.related-product-meta {
  font-size: 12px;
  color: #6b7280;
  font-weight: normal;
  padding: 0;
  margin: 0;
  margin-bottom: 0px;
  line-height: normal;
  letter-spacing: normal;
}

.related-product-actions,
.pl-bottom .product-actions {
  margin-top: 15px;
  gap: 10px !important;
  display: flex;
}

.related-product-actions.btn,
.pl-bottom .product-actions.btn {
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 14px;
  font-weight: normal;
  padding: 5px 0px;
  margin: 0;
  line-height: normal;
  letter-spacing: normal;
  width: 50%;
}

.related-product-actions.btn-primary,
.pl-bottom .product-actions.btn-primary {
  background: #005491;
  color: white;
  flex: 1;
  font-size: 14px;
  font-weight: normal;
  padding: 5px 0px;
  margin: 0;
  line-height: normal;
  letter-spacing: normal;
  width: 50%;
}

.related-product-actions button,
.related-product-actions a,
.pl-bottom .product-actions button,
.pl-bottom .product-actions a {
  width: 50%;
  border-radius: 5px;
}

.related-product-actions.btn-secondary,
.pl-bottom .product-actions.btn-secondary {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.related-product-actions .related-product-link,
.pl-bottom .product-actions .product-card-link {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-images-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .specifications-tabs .tab-btn {
    padding: 1rem 1rem;
    font-size: 14px;
  }

  .spec-table th,
  .spec-table td {
    padding: 1rem 1.5rem;
  }

  .lightbox-container {
    padding: 50px 15px 100px 15px;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 24px;
    width: 45px;
    height: 45px;
  }

  .lightbox-nav {
    font-size: 24px;
    width: 50px;
    height: 50px;
    padding: 15px;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }
}

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

  .product-details-section {
    padding: 1.5rem 0;
  }

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

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

  .btn {
    width: 100%;
  }

  .product-image {
    height: 250px;
  }

  .product-images-grid {
    grid-template-columns: 1fr;
  }

  .spec-table td.spec-parameter {
    width: 45%;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .specifications-tabs .tab-btn {
    padding: 0.75rem 0.5rem;
    font-size: 13px;
    gap: 0.5rem;
  }

  .lightbox-container {
    padding: 40px 10px 80px 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 22px;
    width: 40px;
    height: 40px;
  }

  .lightbox-nav {
    font-size: 22px;
    width: 45px;
    height: 45px;
    padding: 12px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-thumbnails {
    bottom: 15px;
    gap: 8px;
    padding: 10px 15px;
  }

  .lightbox-thumbnail {
    width: 60px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    font-size: 12px;
    flex-wrap: wrap;
  }

  .specifications-tabs .tab-buttons {
    flex-wrap: wrap;
  }

  .specifications-tabs .tab-btn {
    flex: 1;
    min-width: 100px;
    padding: 0.75rem 0.5rem;
    font-size: 12px;
  }

  .spec-table {
    font-size: 14px;
  }

  .spec-table th,
  .spec-table td {
    padding: 0.75rem 1rem;
  }

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

  .product-image {
    height: 200px;
  }

  .lightbox-container {
    padding: 30px 5px 60px 5px;
  }

  .lightbox-close {
    top: 5px;
    right: 10px;
    font-size: 20px;
    width: 35px;
    height: 35px;
  }

  .lightbox-nav {
    font-size: 20px;
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-thumbnails {
    bottom: 10px;
    gap: 6px;
    padding: 8px 12px;
  }

  .lightbox-thumbnail {
    width: 50px;
    height: 35px;
  }
}

/* Header Container */
.ph-header-section {
  background: linear-gradient(135deg, #005491 0%, #0066b3 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  min-height: 250px;
  display: flex;
  align-items: center;
}

/* Animated Background Elements */
.ph-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  animation: ph-grid-move 20s linear infinite;
}

.ph-animated-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.ph-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: ph-float-circle 15s ease-in-out infinite;
}

.ph-circle:nth-child(1) {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.ph-circle:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: -75px;
  animation-delay: -5s;
}

.ph-circle:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 10%;
  animation-delay: -10s;
}

/* Tech pattern overlay */
.ph-tech-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><g fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"><circle cx="200" cy="200" r="50"/><circle cx="200" cy="200" r="100"/><circle cx="200" cy="200" r="150"/><line x1="50" y1="200" x2="350" y2="200"/><line x1="200" y1="50" x2="200" y2="350"/></g></svg>');
  /* background-size: 400px 400px; */
  background-size: contain;
  animation: ph-tech-rotate 30s linear infinite;
}

.ph-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

/* Company Logo/Brand */
.ph-brand {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

.ph-brand::after {
  content: "⚡";
  font-size: 1.2rem;
}

/* Breadcrumb Styles */
.ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
  flex-wrap: wrap;
}

.ph-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  /* padding: 0.5rem 1rem; */
  /* border-radius: 20px; */
  font-weight: 500;
  font-size: 1.2rem;
  /* background: rgba(255, 255, 255, 0.1); */
  /* backdrop-filter: blur(10px); */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.ph-breadcrumb a:hover {
  /* background: rgba(255, 255, 255, 0.2); */
  color: white;
  transform: translateY(-2px);
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

.ph-breadcrumb .ph-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
  font-size: 1.2rem;
}

.ph-breadcrumb .ph-current {
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  /* background: rgba(255, 255, 255, 0.15); */
  /* backdrop-filter: blur(10px); */
  padding: 0.5rem 1rem;
  /* border-radius: 20px; */
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
}

/* Main Content Layout */
.ph-header-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: left;
  width: 50%;
}

/* Product Title */
.ph-product-title {
  font-size: 35px;
  font-weight: 500;
  color: white;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  /* margin-bottom: 1rem; */
  text-transform: uppercase;
}

/* Model Number */
.ph-product-model {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ph-product-model::before {
  content: "MODEL NUMBER : ";
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Category Badge */
.ph-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.ph-category-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

/* Pulse Animation for Interactive Elements */
.ph-pulse {
  animation: ph-pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ph-header-section {
    padding: 2rem 0;
    min-height: 250px;
  }

  .ph-container {
    padding: 0 1rem;
  }

  .ph-brand {
    top: 1rem;
    right: 1rem;
    font-size: 0.8rem;
  }

  .ph-breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .ph-breadcrumb a,
  .ph-breadcrumb .ph-current {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .ph-product-title {
    font-size: 2rem;
  }

  .ph-product-model {
    font-size: 1rem;
  }

  .ph-category-badge {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Animations */
@keyframes ph-grid-move {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-20px) translateY(-20px);
  }
}

@keyframes ph-float-circle {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes ph-tech-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes ph-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.ph-toyo-svg {
  width: max-content;
  height: 85%;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}
.ph-toyo-svg svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  opacity: 0.1;
  animation: ph-pulse 2s infinite;
}

/* Entrance animations */
.ph-header-section {
  animation: ph-fadeIn 1s ease-out;
}

.ph-breadcrumb {
  animation: ph-slideInUp 0.8s ease-out 0.2s both;
}

.ph-product-title {
  animation: ph-slideInUp 0.8s ease-out 0.4s both;
}

.ph-product-subtitle {
  animation: ph-slideInUp 0.8s ease-out 0.6s both;
  margin-bottom: 0px;
}

.ph-btn {
  animation: ph-slideInUp 0.8s ease-out 0.8s both;
}

.ph-product-model {
  animation: ph-slideInUp 0.8s ease-out 1s both;
}

.ph-category-badge {
  animation: ph-slideInUp 0.8s ease-out 1.2s both;
}

@keyframes ph-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ph-slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle glow effect */
.ph-glow {
  position: relative;
}

.ph-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(20px);
  opacity: 0.3;
  z-index: -1;
}

.product-details-info-section .detail-content ul,
.product-details-info-section .detail-content .section-header {
  margin-left: 25px;
}
.product-details-info-section .detail-content .section-header h2 {
  margin: 0px;
  color: #005491 !important;
}
.detail-info-item,
.feature-images-grid {
  margin-bottom: 25px;
}
.detail-info-item:last-child {
  margin-bottom: 0px;
}
.feature-image-item {
  width: 100%;
  height: 600px;
}
.feature-image-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.product-details-info-section {
  padding-bottom: 50px;
}
