/* Product Specifications Styling */

.product-specifications {
  background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.product-cta {
  margin: 1.5rem 0 1rem 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #0a0e1a;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  border: 2px solid transparent;
}

.cta-button:hover {
  background: linear-gradient(135deg, #00ffff 0%, #00d4ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
  border-color: #00ffff;
}

.cta-button::after {
  content: ' →';
  margin-left: 0.5rem;
}

.product-price-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  margin: 0.5rem 0;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.product-specifications h3 {
  color: #00d4ff;
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.specs-table tr {
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  transition: background 0.2s ease;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table tr:hover {
  background: rgba(0, 212, 255, 0.1);
}

.specs-table th {
  text-align: left;
  padding: 1rem;
  font-weight: 600;
  color: #00d4ff;
  font-size: 0.9rem;
  width: 40%;
  vertical-align: top;
  background: rgba(0, 212, 255, 0.05);
  border-right: 1px solid rgba(0, 212, 255, 0.2);
}

.specs-table td {
  padding: 1rem;
  color: #e8edf5;
  font-size: 0.95rem;
  font-weight: 500;
}

.specs-table td strong {
  color: #00d4ff;
}

.spec-highlight {
  color: #00d4ff;
  font-weight: 600;
}

.spec-note {
  font-size: 0.85rem;
  color: #8a95a8;
  font-style: italic;
  margin-top: 0.25rem;
}

.product-documents {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.manual-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 8px;
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 180px;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.1);
}

.manual-link:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(0, 212, 255, 0.15) 100%);
  border-color: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.manual-link i {
  font-size: 1.1rem;
}

.manual-link:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.manual-link i {
  font-size: 1.1rem;
}

.specs-last-updated {
  font-size: 0.8rem;
  color: #8a95a8;
  margin-top: 1rem;
  text-align: right;
  font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .product-specifications {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .product-specifications h3 {
    font-size: 1.25rem;
  }

  .specs-table th,
  .specs-table td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .specs-table th {
    width: 45%;
  }

  .manual-link {
    width: 100%;
    justify-content: center;
  }
}

/* Collapsible specs for mobile */
.specs-toggle {
  display: none;
  width: 100%;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  color: #00d4ff;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.specs-toggle:hover {
  background: rgba(0, 212, 255, 0.2);
}

.specs-toggle i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.specs-toggle.active i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .specs-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .specs-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .specs-content.active {
    max-height: 2000px;
  }
}

/* Spec categories */
.spec-category {
  background: rgba(0, 212, 255, 0.05);
  padding: 0.5rem 1rem;
  margin: 1rem 0 0.5rem 0;
  border-left: 3px solid #00d4ff;
  font-weight: 600;
  color: #00d4ff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Certification badges */
.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cert-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 4px;
  color: #00d4ff;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Hide last updated text */
.specs-last-updated {
  display: none !important;
}

/* Override for better button styling */
.product-documents {
  display: flex !important;
  gap: 1rem !important;
  margin-top: 1.5rem !important;
  flex-wrap: wrap !important;
}

.manual-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.875rem 1.5rem !important;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%) !important;
  border: 2px solid rgba(0, 212, 255, 0.4) !important;
  border-radius: 8px !important;
  color: #00d4ff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
  flex: 1 !important;
  min-width: 180px !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.1) !important;
}

.manual-link:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(0, 212, 255, 0.15) 100%) !important;
  border-color: #00d4ff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3) !important;
}

.manual-link i {
  font-size: 1.1rem !important;
}


/* Product Comparison Tables */
.product-comparison {
  background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.product-comparison h3 {
  color: #00d4ff;
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
  font-weight: 600;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table thead {
  background: rgba(0, 212, 255, 0.15);
}

.comparison-table th {
  padding: 1rem;
  text-align: left;
  color: #00d4ff;
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.comparison-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.05);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-note {
  margin: 1rem 0 0 0;
  padding: 1rem;
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #ffd700;
  border-radius: 4px;
  color: #ffd700;
  font-size: 0.95rem;
}


/* System Bundle CTAs */
.system-bundle-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(0, 212, 255, 0.2);
}

.bundle-highlight {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.bundle-highlight h4 {
  color: #00d4ff;
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
}

.bundle-highlight p {
  color: #e0e0e0;
  margin: 0.5rem 0;
}

.bundle-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.bundle-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.bundle-button.primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #0a0e1a;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.bundle-button.primary:hover {
  background: linear-gradient(135deg, #00ffff 0%, #00d4ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.bundle-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #00d4ff;
  border: 2px solid rgba(0, 212, 255, 0.5);
}

.bundle-button.secondary:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
}

.discount-note {
  margin-top: 1rem;
  padding: 0.8rem;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 6px;
  color: #ffd700;
  font-size: 0.95rem;
}

.discount-note strong {
  color: #ffed4e;
  font-weight: 700;
}
