/*********************blog_detail****************/
#blog{
 padding-top:40px;
 padding-bottom:40px;
 }
.blog_1l{
 border:1px solid #ea1c261f;
 padding:30px 15px;
 }

/* NEW: Blog Header Styles for New Blog Posts */
.blog-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 0 40px;
  border-bottom: 4px solid #ea1c26;
}

.breadcrumb {
  color: #999;
  font-size: 14px;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #ea1c26;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #c41820;
}

.breadcrumb i {
  margin: 0 8px;
  font-size: 12px;
}

.blog-header h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #999;
  font-size: 14px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: #ea1c26;
}

/* Blog Content Styles */
.blog-content {
  padding: 60px 0;
  background: #f9f9f9;
}

.blog-article {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-intro {
  margin-bottom: 40px;
}

.lead {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-weight: 400;
}

/* Alert Boxes */
.alert-box {
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 5px solid;
}

.alert-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-box ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

.alert-box li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.alert-box.danger {
  background: #fff5f5;
  border-left-color: #dc3545;
}

.alert-box.danger h3 {
  color: #dc3545;
}

.alert-box.warning {
  background: #fff8e6;
  border-left-color: #ffc107;
}

.alert-box.warning h3 {
  color: #d39e00;
}

.alert-box.success {
  background: #f0f9f5;
  border-left-color: #28a745;
}

.alert-box.success h3 {
  color: #28a745;
}

.alert-box.info {
  background: #e7f3ff;
  border-left-color: #17a2b8;
}

.alert-box.info h3 {
  color: #17a2b8;
}

/* Article Headings */
.blog-article h2 {
  color: #222;
  font-size: 28px;
  font-weight: 700;
  margin: 50px 0 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ea1c26;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-article h2:first-of-type {
  margin-top: 0;
}

.blog-article h3 {
  color: #333;
  font-size: 22px;
  font-weight: 600;
  margin: 35px 0 20px;
}

.blog-article h4 {
  color: #444;
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0 15px;
}

/* Paragraphs and Lists */
.blog-article p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.blog-article ul,
.blog-article ol {
  margin: 20px 0 20px 30px;
  padding: 0;
}

.blog-article li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.blog-article strong {
  color: #222;
  font-weight: 600;
}

/* Oil Brand Cards */
.oil-brand-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  transition: all 0.3s;
}

.oil-brand-card:hover {
  border-color: #ea1c26;
  box-shadow: 0 5px 20px rgba(234, 28, 38, 0.15);
  transform: translateY(-2px);
}

.brand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

.brand-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: #ffc107;
  font-size: 20px;
}

.rating-text {
  color: #666;
  font-size: 16px;
  font-weight: 600;
}

.brand-specs {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: #666;
  font-weight: 500;
}

.spec-value {
  color: #222;
  font-weight: 600;
}

.price-highlight {
  color: #ea1c26;
  font-size: 20px;
}

.brand-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.pros-list,
.cons-list {
  padding: 15px;
  border-radius: 8px;
}

.pros-list {
  background: #f0f9f5;
  border-left: 4px solid #28a745;
}

.cons-list {
  background: #fff5f5;
  border-left: 4px solid #dc3545;
}

.pros-list h4,
.cons-list h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
}

.pros-list h4 {
  color: #28a745;
}

.cons-list h4 {
  color: #dc3545;
}

.pros-list ul,
.cons-list ul {
  margin: 0;
  padding: 0 0 0 20px;
}

.pros-list li,
.cons-list li {
  margin-bottom: 8px;
  font-size: 15px;
}

.best-for-badge {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
}

.recommended-badge {
  display: inline-block;
  background: #ea1c26;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(234, 28, 38, 0.3);
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.comparison-table thead {
  background: linear-gradient(135deg, #ea1c26 0%, #c41820 100%);
  color: #fff;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
  font-weight: 600;
  font-size: 16px;
}

.comparison-table td {
  font-size: 15px;
  color: #555;
}

.comparison-table tbody tr:hover {
  background: #f8f9fa;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Info Box */
.info-box {
  background: #f8f9fa;
  border-left: 5px solid #17a2b8;
  padding: 25px;
  margin: 25px 0;
  border-radius: 8px;
}

.info-box p {
  margin-bottom: 15px;
}

.info-box strong {
  color: #17a2b8;
}

.info-box ol,
.info-box ul {
  margin: 15px 0 0 25px;
}

/* Recommendation Box */
.recommendation-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 3px solid #ea1c26;
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
}

.recommendation-box h3 {
  color: #ea1c26;
  margin-top: 0;
}

/* FAQ Section within Article */
.faq-section {
  margin: 40px 0;
}

.faq-item {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #ea1c26;
  box-shadow: 0 3px 10px rgba(234, 28, 38, 0.1);
}

.faq-question {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-question i {
  color: #ea1c26;
  margin-top: 3px;
}

.faq-answer {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  padding-left: 30px;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  border-radius: 12px;
  padding: 40px;
  margin: 50px 0;
  border: 4px solid #ea1c26;
}

.cta-box h3 {
  color: #fff;
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 20px;
}

.cta-box p {
  color: #ddd;
  margin-bottom: 15px;
}

.cta-box strong {
  color: #fff;
}

.cta-box ul {
  margin: 20px 0 25px 0;
  padding: 0;
}

.cta-box li {
  color: #ddd;
  list-style: none;
  margin-bottom: 12px;
  padding-left: 0;
}

.cta-box a {
  color: #ea1c26;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.cta-box a:hover {
  color: #c41820;
  text-decoration: underline;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.cta-buttons .btn {
  flex: 1;
  text-align: center;
}

/* Share Buttons */
.share-buttons {
  margin: 40px 0;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

.share-buttons p {
  margin-bottom: 15px;
  font-weight: 600;
}

.share-btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  color: #fff;
}

.share-btn i {
  margin-right: 5px;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.twitter {
  background: #1da1f2;
}

/* Fake Parts Specific Styles */
.fake-parts-list {
  margin: 30px 0;
}

.fake-part-item {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.fake-part-item:hover {
  border-color: #ea1c26;
  box-shadow: 0 3px 10px rgba(234, 28, 38, 0.1);
}

.fake-part-item h3 {
  color: #222;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
}

.fake-part-item p {
  margin-bottom: 8px;
}

/* Verification Steps */
.verification-steps {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin: 25px 0;
}

.verification-steps h4 {
  margin-top: 20px;
  margin-bottom: 15px;
}

.verification-steps h4:first-child {
  margin-top: 0;
}

.verification-steps ul {
  margin: 10px 0 20px 25px;
}

/* Red Flags List */
.red-flags-list {
  margin: 30px 0;
}

.red-flag-item {
  display: flex;
  gap: 15px;
  background: #fff;
  border: 2px solid #ffc107;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.red-flag-item:hover {
  border-color: #dc3545;
  box-shadow: 0 3px 10px rgba(220, 53, 69, 0.1);
}

.flag-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.red-flag-item h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #dc3545;
}

.red-flag-item p {
  margin: 0;
  font-size: 15px;
}

/* Action Steps */
.action-steps {
  counter-reset: step-counter;
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.action-steps li {
  counter-increment: step-counter;
  background: #f8f9fa;
  border-left: 5px solid #ea1c26;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  position: relative;
}

.action-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  background: #ea1c26;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.action-steps h4 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #222;
}

.action-steps p {
  margin: 0;
}

/* Protection Tips */
.protection-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.tip-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  position: relative;
  transition: all 0.3s;
}

.tip-card:hover {
  border-color: #28a745;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.15);
  transform: translateY(-3px);
}

.tip-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #28a745;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.tip-card h4 {
  margin-top: 10px;
  margin-bottom: 12px;
  color: #222;
  font-size: 18px;
}

.tip-card p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

/* Sidebar Styles */
.blog-sidebar {
  position: sticky;
  top: 20px;
}

.sidebar-widget {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ea1c26;
}

.related-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-posts li {
  margin-bottom: 15px;
}

.related-posts a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  display: block;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s;
}

.related-posts a:hover {
  background: #f8f9fa;
  color: #ea1c26;
  padding-left: 15px;
}

.checklist-widget {
  background: linear-gradient(135deg, #f0f9f5 0%, #e6f7ed 100%);
  border: 2px solid #28a745;
}

.checklist-widget h3 {
  color: #28a745;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  padding-left: 5px;
}

.cta-widget {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 3px solid #dc3545;
}

.cta-widget h3 {
  color: #fff;
  border-bottom-color: #dc3545;
}

.cta-widget p {
  color: #ddd;
  font-size: 15px;
}

.sidebar-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-widget ul li {
  margin-bottom: 10px;
}

.sidebar-widget ul li a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.sidebar-widget ul li a:hover {
  color: #ea1c26;
}

/* Responsive Design */
@media (max-width: 991px) {
  .blog-header h1 {
    font-size: 28px;
  }

  .blog-article {
    padding: 25px;
  }

  .blog-article h2 {
    font-size: 24px;
  }

  .brand-pros-cons {
    grid-template-columns: 1fr;
  }

  .protection-tips {
    grid-template-columns: 1fr;
  }

  .action-steps li::before {
    left: auto;
    right: 20px;
    top: 20px;
    transform: none;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .blog-sidebar {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .blog-header {
    padding: 40px 0 30px;
  }

  .blog-header h1 {
    font-size: 24px;
  }

  .blog-meta {
    gap: 15px;
    font-size: 13px;
  }

  .blog-article {
    padding: 20px;
  }

  .blog-article h2 {
    font-size: 22px;
    margin: 35px 0 20px;
  }

  .blog-article h3 {
    font-size: 20px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px;
    font-size: 14px;
  }

  .oil-brand-card {
    padding: 20px;
  }

  .brand-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cta-box {
    padding: 25px;
  }

  .share-btn {
    display: block;
    margin: 10px 0;
  }
}
.blog_1l .form-control {
    height: 48px;
    font-size: 18px;
    border-color: #ea1c261f;
    box-shadow: none;
	border-radius:0;
}
.blog_1l .input-group .btn {
    background: #ea1c26;
    margin-left: 0!important;
    padding: 10.5px 20px;
    font-size: 18px;
	border-radius:0;
	border-color:#ea1c26;
} 
.blog_1l h4 span{
margin-right:5px; 
 }
.product_1li img{
float:left;
margin-right:20px; 
 }
.product_1li h6 .span_1{
margin-right:5px;
 }
.product_1li h6 .span_2{
margin-right:5px;
margin-left:20px;
 }
.product_1li{
margin-top:15px;
border-bottom:1px solid #ea1c261f;
padding-bottom:15px; 
 }
.blog_1l ul li {
display:inline-block;
margin:5px 5px 8px 0px;
font-size:16px; 
 } 
.blog_1l ul li a {
display:block;
background:#ea1c260f;
padding:8px 14px;
 }
.blog_1l ul li a:hover {
background:#ea1c26;
color:#fff;
 }
.blog_1li{
box-shadow: 0 0 10px #ea1c2636;
padding:26px 15px 30px 15px;
margin-top:15px;  
 }
.blog_1li .button{
display:block;
text-align:center;
 } 

.blod_d1 h6 a i{
margin-right:5px; 
 }
.blod_d1 h6 a {
margin-left:5px; 
margin-right:5px;
 }
blockquote {
    border-color: #ea1c26;
}
.blod_d1 ul li{
display:inline-block;
margin-right:10px;
 }
.blod_d1 ul li a{
padding: 6px 15px;
background: #ea1c260f;
border-radius:30px;
display:block;
font-size:16px;
 }
.blod_d1 ul li a:hover{
background:#ea1c26;
color:#fff;
 }
.mgl{
margin-left:50px;
margin-right:50px;
 }
.blod_d2i{
margin-top:30px; 
 }
.blod_d2 h3 span {
    margin-right: 5px;
}
.blod_d3i h5 span{
color:#FF0000; 
 }
.blod_d3i .form-control{
height:50px;
border-radius:0;
margin-top:15px;
border-color:#ea1c261f;
box-shadow:none;
 }
.blod_d3i .form_1{
height:180px;
 }
.blod_d3{
border:1px solid #ea1c261f;
padding:15px 20px 40px 20px;
margin-top:30px; 
 }
/*********************blog_detail_end****************/

@media screen and (max-width : 767px){
#blog{
text-align:center; 
 }
.product_1li img {
    float: none;
    margin-right:0;
	margin-bottom:10px;
}
.blod_d1{
margin-top:15px;
 }
.blod_d1 ul li{
margin-bottom:8px; 
 }
.blod_d2i .col-sm-10{
margin-top:10px; 
 }
}

@media (min-width:768px) and (max-width:991px) {

 }
@media (min-width:992px) and (max-width:1200px) {

 }
@media (min-width:1201px) and (max-width:1220px) {

 }




