/* Żarówki Samochodowe - Custom Styles */

:root {
    --primary-blue: #1E40AF;
    --light-blue: #3B82F6;
    --very-light-blue: #EFF6FF;
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    --dark-gray: #374151;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  /* Global Styles */
  body {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
  }
  
  .text-primary-blue {
    color: var(--primary-blue) !important;
  }
  
  .bg-primary-blue {
    background-color: var(--primary-blue) !important;
  }
  
  .bg-light-blue {
    background-color: var(--light-blue) !important;
  }
  
  .bg-very-light-blue {
    background-color: var(--very-light-blue) !important;
  }
  
  .text-success-green {
    color: var(--success-green) !important;
  }
  
  .bg-success-green {
    background-color: var(--success-green) !important;
  }
  
  .btn-warning-orange {
    background-color: var(--warning-orange);
    border-color: var(--warning-orange);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-warning-orange:hover {
    background-color: #D97706;
    border-color: #D97706;
    color: white;
    transform: scale(1.05);
  }
  
  /* Header Styles */
  .navbar-custom {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue) !important;
  }
  
  .navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero-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 1000 1000"><path d="M0,1000 C200,800 400,600 600,700 C800,800 900,900 1000,800 L1000,1000 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  /* Search Form */
  .search-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
  }
  
  .search-form .form-select,
  .search-form .form-control {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .search-form .form-select:focus,
  .search-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
  }
  
  /* Benefits Section */
  .benefits-section {
    padding: 4rem 0;
    background: var(--very-light-blue);
  }
  
  .benefit-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
  }
  
  .benefit-card:hover {
    transform: translateY(-4px);
  }
  
  .benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
  }
  
  .benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
  }
  
  /* Brand Cards */
  .brand-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark-gray);
    display: block;
    height: 100%;
  }
  
  .brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: var(--primary-blue);
  }
  
  .brand-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
  }
  
  .brand-logo-black img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .brand-card:hover .brand-logo-black img {
    filter: grayscale(0%);
  }
  
  .brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1rem;
}

  /* Product Cards */
  .product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light-gray);
  }
  
  .product-info {
    padding: 1.5rem;
  }
  
  .product-brand {
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .product-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--dark-gray);
  }
  
  .product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 1rem;
  }
  
  /* Light Type Sections */
  .light-type-section {
    margin-bottom: 3rem;
  }
  
  .light-type-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--very-light-blue);
    border-radius: 8px;
  }
  
  .light-type-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-right: 1rem;
  }
  
  .light-type-info h3 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .light-type-bulb {
    color: var(--dark-gray);
    font-size: 1rem;
    margin: 0;
  }
  
  /* Breadcrumbs */
  .breadcrumb-custom {
    background: var(--very-light-blue);
    padding: 1rem 0;
  }
  
  .breadcrumb-custom .breadcrumb {
    background: transparent;
    margin: 0;
  }
  
  .breadcrumb-custom .breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
  }
  
  .breadcrumb-custom .breadcrumb-item a:hover {
    text-decoration: underline;
  }
  
  /* Vehicle Info */
  .vehicle-info {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
  }
  
  .vehicle-info h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
  }
  
  .vehicle-specs {
    list-style: none;
    padding: 0;
  }
  
  .vehicle-specs li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
  }
  
  .vehicle-specs li:last-child {
    border-bottom: none;
  }
  
  .spec-label {
    font-weight: 600;
    color: var(--dark-gray);
  }
  
  .spec-value {
    color: var(--primary-blue);
    font-weight: 500;
  }
  
  /* SEO Content */
  .long-content-bottom {
    padding: 4rem 0;
  }
  
  .long-content-bottom h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .long-content-bottom p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  
  /* Footer */
  .footer {
    background: var(--dark-gray);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
  }
  
  .footer a {
    color: #D1D5DB;
    text-decoration: none;
  }
  
  .footer a:hover {
    color: white;
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
    
    .search-form {
      padding: 1.5rem;
    }
    
    .benefit-card {
      margin-bottom: 1.5rem;
    }
    
    .brand-card {
      margin-bottom: 1.5rem;
    }
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in-up {
    animation: fadeInUp 0.6s ease-out;
  }
  
  /* Utility Classes */
  .section-padding {
    padding: 4rem 0;
  }
  
  .text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .border-colored {
    border: 2px solid var(--primary-blue) !important;
  }
  
  .border-colored-green {
    border: 2px solid var(--success-green) !important;
  }
  
  .border-colored-orange {
    border: 2px solid var(--warning-orange) !important;
  }
  
  
/*
===============================
blog area start
===============================
*/
.blog-area {
  margin-top: 60px;
}
.blog-left-area {
  width: 100%;
  min-height: 600px;
  background-color: #ffffff;
  border-radius: 5px;
}
.blog-header a {
  max-width: 163px;
}
.blog-left-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.blog-left-img img {
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
  border-radius: 5px 5px 0 0;
}
.blog-left-area:hover .blog-left-img img {
  transform: scale(1.3);
}
.blog-left-text p {
  color: #767676;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-left-text {
  padding: 30px;
}
.blog-left-text a {
  text-decoration: none;
}
.blog-left-text span a {
  color: #222;
  font-size: 14px;
  display: inline-block;
  line-height: 28px;
  font-weight: 400;
}
.blog-left-text span a:hover {
  color: var(--primary-blue);
}
.blog-left-text h3 {
  margin-bottom: 24px;
}
.blog-left-text h3 a {
  font-family: "Poppins", sans-serif;
  color: #222;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
.blog-left-text h3 a:hover {
  color: var(--primary-blue);
}
.blog-left-text p {
  color: #767676;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-left-text > a {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  width: 100%;
  max-width: 160px;
  min-height: 50px;
  border-radius: 5px;
  background-color: #cc0422;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid #db0424;
  transition: 0.3s;
  display: block;
  text-align: center;
  line-height: 45px;
}
.blog-left-text > a:hover {
  background-color: #F90B31;
}
.blog-right-area .blog-left-img {
  width: 100%;
  max-width: 210px;
  height: 180px;
  border-radius: 5px 0 0 5px;
}
.blog-right-area .blog-left-img img {
  width: 100%;
  max-width: 210px;
  height: 180px;
  border-radius: 5px 0 0 5px;
}
.blog-right-area:hover .blog-left-img img {
  transform: scale(1.3);
}
.blog-right-area {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #ffffff;
  border-radius: 5px;
}
.blog-right-area .blog-left-text p {
  display: none;
}
.blog-right-area .blog-left-text > a {
  background-color: transparent;
  border: 0;
  padding: 0;
  width: fit-content;
  height: 0;
  margin-top: 0;
  color: #DD0525;
  line-height: 45px;
}
.blog-right-area .blog-left-text {
  padding: 0;
}
.blog-right-area .blog-left-text h3 {
  margin-top: 10px;
  margin-bottom: 0;
}
.blog-right-area .blog-left-text h3 a {
  font-size: 18px;
}
.blog-main-right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.error-404 {
    padding: 80px 20px;
    text-align: center;
}

.error-container {
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .page-title {
    font-size: 120px;
    margin: 0;
    color: #e74c3c;
    line-height: 1;
}

.error-404 h2 {
    font-size: 32px;
    margin: 20px 0;
    color: #2c3e50;
}

.error-404 p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.error-actions {
    margin-top: 40px;
}

.error-actions .button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.error-actions .button:hover {
    background-color: #2980b9;
}

.error-404 .search-form {
    max-width: 300px;
    margin: 20px auto;
}

.error-404 .search-field {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.error-404 .search-submit {
    padding: 10px 20px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.error-404 .search-submit:hover {
    background-color: #27ae60;
}


/* single-post.php */

.content-page__wrapper__bg {
  display: block;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: -moz-linear-gradient(45deg, #0016df 0%, #051dfa 28%, #0016df 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #0016df), color-stop(28%, #051dfa), color-stop(100%, #0016df));
  background: -webkit-linear-gradient(45deg, #0016df 0%, #051dfa 28%, #0016df 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.content-page__content {
  display: block;
  margin: auto;
  margin-top: -50px;
  background-color: #FFF;
}

.content-page__content .content-header {
  display: block;
  margin: 20px 40px;
  margin-top: 30px;
  padding-bottom: 10px;
}

.content-page__content .content-header h1 {
  display: block;
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0;
}

.content-page__content .content-header p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}


.content-page__content .content-inner {
  display: block;
  margin: 20px 40px;
  margin-top: 40px;
}

.content-page__content .content-inner h2 {
  display: block;
  font-size: 24px;
  margin: 20px 0;
}

.content-page__content .content-inner p {
  display: block;
  margin: 20px 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

.article-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 0.5rem;
}
.article-date {
  color: #6c757d;
  font-size: 0.9rem;
  margin-right: 10px;
}
.article-read-time {
  color: #6c757d;
  font-size: 0.9rem;
}
.article-card {
  margin-bottom: 2rem;
}
.article-image {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.article-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.box__container-car {
    background-color: #f0f2f5;
    margin-bottom: 20px;
}

.box__container-car {
    display: block;
    padding: 40px 20px;
    border-radius: 5px;
    color: #222
}