/* Modern eBay Template - Parts Ease Automotive */

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
}

.nActive-wrapper {
  line-height: 1.6;
  font-size: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.nActive-wrapper span[property="description"] {
  display: none;
}

.nActive-wrapper img {
  max-width: 100%;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.nActive-wrapper img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Main Container */
.nActive-wrapper .container {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 0;
  width: 95%;
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

/* Header Section */
.nActive-wrapper .container .header {
  clear: both;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 3px solid #D2391C;
  position: relative;
}

.nActive-wrapper .container .header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #D2391C, #B8341A);
  border-radius: 2px;
}

.nActive-wrapper .container .header img {
  max-height: 120px;
  width: auto;
  transition: all 0.3s ease;
}

.nActive-wrapper .container .header img:hover {
  transform: scale(1.05);
}

/* Footer Section */
.nActive-wrapper .container .footer {
  clear: both;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ffffff;
  margin-top: 40px;
}

.nActive-wrapper .container .footer p {
  margin: 10px 0;
  color: #ecf0f1;
}

.nActive-wrapper .container .footer .muted {
  color: #bdc3c7;
  font-size: 14px;
}

/* Left Column - Hidden */
.nActive-wrapper .container .column-left {
  display: none;
}

/* Right Column - Full Width Content */
.nActive-wrapper .container .column-right {
  width: 95%;
  float: none;
  padding: 40px;
  max-width: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Typography */
.nActive-wrapper .container h1 {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  border-bottom: 3px solid #D2391C;
  padding-bottom: 10px;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.nActive-wrapper .container h2 {
  color: #D2391C;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 30px 0 15px 0;
  position: relative;
  padding-left: 20px;
}

.nActive-wrapper .container h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #D2391C, #B8341A);
  border-radius: 2px;
}

.nActive-wrapper .container h3 {
  color: #34495e;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 20px 0 10px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 10px 15px;
  border-radius: 10px;
  border-left: 4px solid #D2391C;
}

.nActive-wrapper .container h4 {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content Styling */
.nActive-wrapper .container p {
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.nActive-wrapper .container ul {
  padding-left: 0;
  list-style: none;
}

.nActive-wrapper .container li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 5px;
}

.nActive-wrapper .container li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: #D2391C;
  font-weight: bold;
  font-size: 14px;
}

/* Special Sections */
.nActive-wrapper .container div[typeof="Product"] {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid #e9ecef;
  margin: 20px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nActive-wrapper .container {
    width: 95%;
    margin: 10px auto;
  }
  
  .nActive-wrapper .container .column-right {
    width: 100%;
    float: none;
    padding: 25px 20px;
  }
  
  .nActive-wrapper .container .header,
  .nActive-wrapper .container .footer {
    padding: 30px 20px;
  }
  
  .nActive-wrapper .container h1 {
    font-size: 1.8rem;
  }
  
  .nActive-wrapper .container h2 {
    font-size: 1.3rem;
  }
  
  .nActive-wrapper .container h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .nActive-wrapper {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .nActive-wrapper .container {
    border-radius: 10px;
  }
  
  .nActive-wrapper .container .column-right {
    padding: 20px 15px;
  }
  
  .nActive-wrapper .container .header img {
    max-height: 80px;
  }
  
  .nActive-wrapper .container h1 {
    font-size: 1.5rem;
  }
}

/* Table Styling */
.nActive-wrapper .container .table {
  margin: 30px 0;
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nActive-wrapper .container .table td {
  padding: 15px 20px;
  border-bottom: 1px solid #e9ecef;
  color: #2c3e50;
  transition: background-color 0.3s ease;
}

.nActive-wrapper .container .table tr:hover td {
  background-color: #f8f9fa;
}

.nActive-wrapper .container .table tr:last-child td {
  border-bottom: none;
}

/* Strong/Bold Text */
.nActive-wrapper .container strong {
  color: #D2391C;
  font-weight: 600;
}

/* Links */
.nActive-wrapper .container a {
  color: #D2391C;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nActive-wrapper .container a:hover {
  color: #B8341A;
  text-decoration: underline;
}

/* Special Info Boxes */
.nActive-wrapper .container .info-box {
  background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
  border: 2px solid #27ae60;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

.nActive-wrapper .container .warning-box {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #f39c12;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

.nActive-wrapper .container .danger-box {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border: 2px solid #e74c3c;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
}