:root {
  --oem-blue: #7ea6d9;
  --oem-dark: #6f6f73;
  --oem-red: #d90429;
  --oem-red-hover: #b00322;
  --oem-white: #ffffff;
  --oem-light-bg: #f5f5f5;
  --oem-border: #d9d9d9;
  --oem-text: #555555;
}
/* Force center EVERYTHING in final CTA */
.oem-final-cta,
.oem-final-cta * {
  text-align: center !important;
}

/* Ensure layout is centered (not just text) */
.oem-final-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Fix button alignment */
.oem-final-cta-action {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.oem-section-label {
  display: block;
  width: 100%;
  text-align: center !important;
}
.oem-final-cta {
  padding: 60px 20px 40px;
}

.oem-final-cta .oem-container {
  max-width: 900px;
  margin: 0 auto;
}

.oem-final-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.oem-final-cta-text {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.oem-final-cta-text .oem-section-label,
.oem-final-cta-text h2,
.oem-final-cta-copy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.oem-final-cta-copy {
  max-width: 640px;
  margin-top: 10px;
  margin-bottom: 0;
}

.oem-final-cta-action {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}


.oem-homepage {
  background: var(--oem-white);
  color: var(--oem-dark);
  font-family: Arial, sans-serif;
}

.oem-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.oem-homepage section {
  padding: 70px 0;
}

.oem-hero {
  background: var(--oem-light-bg);
  text-align: center;
}

.oem-hero h1 {
  font-size: 46px;
  margin-bottom: 16px;
  color: var(--oem-dark);
}

.oem-hero p,
.oem-subtext {
  font-size: 18px;
  color: var(--oem-text);
  margin-bottom: 24px;
}

.oem-btn {
  display: inline-block;
  margin: 10px 8px 0;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}


.oem-banner {
  background: #3f3f43;
}

.oem-btn-primary {
  background: var(--oem-red);
  color: var(--oem-white);
}

.oem-btn-primary:hover {
  background: var(--oem-red-hover);
}

.oem-btn-secondary {
  background: var(--oem-blue);
  color: var(--oem-white);
}

.oem-btn-secondary:hover {
  background: var(--oem-dark);
}

.oem-benefits h2,
.oem-featured h2,
.oem-featured-intro h2,
.oem-testimonials h2,
.oem-final-cta h2,
.oem-banner h2 {
  text-align: center;
  margin-bottom: 12px;
  color: var(--oem-dark);
}

.oem-benefits > .oem-container > p,
.oem-featured > .oem-container > p,
.oem-featured-intro > .oem-container > p,
.oem-banner > .oem-container > p,
.oem-final-cta > .oem-container > p {
  text-align: center;
  color: var(--oem-text);
  margin-bottom: 30px;
}

.oem-benefit-grid,
.oem-shop-grid,
.oem-testimonial-grid {
  display: grid;
  gap: 24px;
}

.oem-benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.oem-shop-grid {
  grid-template-columns: repeat(3, 1fr);
}

.oem-testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.oem-card,
.oem-product-card {
  background: var(--oem-white);
  border: 1px solid var(--oem-border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.oem-product-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-bottom: 18px;
}

.oem-product-card h3,
.oem-card h3 {
  margin-bottom: 10px;
  color: var(--oem-dark);
}

.oem-product-card p,
.oem-card p {
  color: var(--oem-text);
  line-height: 1.6;
}

.oem-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--oem-red) !important;
  margin: 10px 0 14px;
}

.oem-banner {
  background: var(--oem-blue);
  color: var(--oem-white);
  text-align: center;
}

.oem-banner h2,
.oem-banner p {
  color: var(--oem-white) !important;
}

.oem-final-cta {
  background: var(--oem-dark);
  color: var(--oem-white);
  text-align: center;
}

.oem-final-cta h2,
.oem-final-cta p {
  color: var(--oem-white) !important;
}

@media (max-width: 991px) {
  .oem-benefit-grid,
  .oem-shop-grid,
  .oem-testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .oem-hero h1 {
    font-size: 32px;
  }

  .oem-benefit-grid,
  .oem-shop-grid,
  .oem-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .oem-btn {
    display: block;
    width: 100%;
    margin: 10px 0 0;
    text-align: center;
  }
}

.oem-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.oem-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--oem-dark);
}

.oem-subtext {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: var(--oem-text);
  max-width: 560px;
}

.oem-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.oem-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.oem-btn-primary {
  background: var(--oem-red);
  color: var(--oem-white);
}

.oem-btn-primary:hover {
  background: var(--oem-red-hover);
}

.oem-btn-secondary {
  background: var(--oem-blue);
  color: var(--oem-white);
}

.oem-btn-secondary:hover {
  background: var(--oem-dark);
}

.oem-hero-image img,
.oem-product-card img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.oem-section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.oem-section-heading h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--oem-dark);
}

.oem-section-heading p {
  color: var(--oem-text);
  font-size: 17px;
}

.oem-benefit-grid,
.oem-product-grid,
.oem-testimonial-grid {
  display: grid;
  gap: 24px;
}

.oem-benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.oem-product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.oem-testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.oem-card,
.oem-product-card {
  background: var(--oem-white);
  border: 1px solid var(--oem-border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.oem-card h3,
.oem-product-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--oem-dark);
}

.oem-card p,
.oem-product-card p {
  margin: 0;
  color: var(--oem-text);
  line-height: 1.6;
}

.oem-product-card img {
  margin-bottom: 18px;
}

.oem-banner {
  background: var(--oem-blue);
  color: var(--oem-white);
}

.oem-banner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.oem-banner h2,
.oem-final-cta h2 {
  margin: 0 0 10px;
  font-size: 32px;
}

.oem-banner p,
.oem-final-cta p {
  margin: 0;
}

.oem-banner p {
  color: var(--oem-white);
}

.oem-final-cta {
  background: var(--oem-dark);
  color: var(--oem-white);
  text-align: center;
}

.oem-final-cta-wrap p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: var(--oem-white);
}

@media (max-width: 991px) {
  .oem-hero-grid,
  .oem-benefit-grid,
  .oem-product-grid,
  .oem-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .oem-banner-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .oem-hero h1 {
    font-size: 38px;
  }

  .oem-section-heading h2,
  .oem-banner h2,
  .oem-final-cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .oem-homepage section {
    padding: 50px 0;
  }

  .oem-hero h1 {
    font-size: 32px;
  }

  .oem-subtext {
    font-size: 16px;
  }

  .oem-btn {
    width: 100%;
    text-align: center;
  }
}

/* CATALOG PAGE */

.oem-catalog-page {
  background: var(--oem-white);
  color: var(--oem-dark);
  font-family: Arial, sans-serif;
  width: 100%;
}

.oem-catalog-header {
  border-top: 1px solid var(--oem-border);
  border-bottom: 1px solid var(--oem-border);
  margin-top: 10px;
}

.oem-catalog-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  max-width: 100%;
}

.oem-catalog-filter,
.oem-catalog-sort {
  color: var(--oem-dark);
}

.oem-catalog-grid-wrap {
  width: 100%;
}

.oem-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.oem-catalog-card {
  border-right: 1px solid var(--oem-border);
  border-bottom: 1px solid var(--oem-border);
  background: var(--oem-light-bg);
}

.oem-catalog-card:nth-child(3n) {
  border-right: none;
}

.oem-catalog-image-wrap {
  aspect-ratio: 1 / 1.25;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.oem-catalog-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.oem-catalog-info {
  background: var(--oem-white);
  padding: 14px 14px 18px;
  border-top: 1px solid var(--oem-border);
}

.oem-catalog-info h3 {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  min-height: 42px;
  color: var(--oem-dark);
}

.oem-catalog-price {
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--oem-red);
  font-weight: 700;
}

.oem-catalog-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 12px;
  border: 1px solid var(--oem-blue);
  color: var(--oem-blue);
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s ease;
  background: var(--oem-white);
}

.oem-catalog-btn:hover {
  background: var(--oem-red);
  border-color: var(--oem-red);
  color: var(--oem-white);
}

@media (max-width: 991px) {
  .oem-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oem-catalog-card:nth-child(3n) {
    border-right: 1px solid var(--oem-border);
  }

  .oem-catalog-card:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 767px) {
  .oem-catalog-topbar {
    padding: 12px;
    font-size: 14px;
  }

  .oem-catalog-grid {
    grid-template-columns: 1fr;
  }

  .oem-catalog-card,
  .oem-catalog-card:nth-child(2n),
  .oem-catalog-card:nth-child(3n) {
    border-right: none;
  }

  .oem-catalog-image-wrap {
    padding: 28px;
  }

  .oem-catalog-info h3,
  .oem-catalog-price {
    font-size: 15px;
  }
}


.oem-contact-hero {
  text-align: center;
  background: var(--oem-light-bg);
  padding: 80px 0;
}

.oem-contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.oem-contact-hero p {
  color: var(--oem-text);
  margin-bottom: 20px;
}

.oem-contact-whatsapp {
  text-align: center;
  background: var(--oem-blue);
  color: #ffffff;
  padding: 80px 0;
}

.oem-contact-whatsapp h2,
.oem-contact-whatsapp p {
  color: #ffffff;
}

.oem-contact-gallery {
  text-align: center;
  padding: 80px 0;
}

.oem-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.oem-gallery-grid img {
  width: 100%;
  border-radius: 12px;
}

.oem-contact-details {
  text-align: center;
  background: var(--oem-dark);
  color: #ffffff;
  padding: 80px 0;
}

.oem-contact-details p {
  margin: 10px 0;
}

@media (max-width: 768px) {
  .oem-gallery-grid {
    grid-template-columns: 1fr;
  }
}
.oem-hero-text {
  text-align: center;
  margin: 0 auto;
}

.oem-hero-buttons {
  justify-content: center;
}

.oem-subtext {
  margin-left: auto;
  margin-right: auto;
}
.oem-hero-grid {
  justify-items: center;
}
.oem-hero {
  background: #3f3f43;
}
.oem-hero h1,
.oem-hero p {
  color: #ffffff;
}
.oem-final-cta {
  background: #2f2f33;
  color: #ffffff;
  text-align: center;
  border-radius: 18px;
  margin: 40px auto;
  max-width: 1100px;
}

.oem-final-cta-wrap {
  padding: 30px 40px;
}

.oem-final-cta h2,
.oem-final-cta p {
  color: #ffffff !important;
}
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.woocommerce ul.products li.product {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.woocommerce ul.products li.product img {
  border-radius: 14px;
  margin-bottom: 16px;
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px;
  color: #3f3f43;
  margin-bottom: 8px;
}

.woocommerce ul.products li.product .price {
  color: #d90429 !important;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: #7ea6d9 !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 14px 20px !important;
  font-weight: 700 !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: #d90429 !important;
}
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 32px !important;
  width: 100% !important;
  margin: 30px 0 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}

.woocommerce ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  clear: none !important;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  box-sizing: border-box;
}

.woocommerce ul.products li.product img {
  width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 14px;
  margin-bottom: 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-size: 22px !important;
  line-height: 1.25 !important;
  color: #2f2f33 !important;
  margin: 0 0 10px !important;
  word-break: normal !important;
}

.woocommerce ul.products li.product .price {
  color: #d90429 !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  margin-bottom: 16px !important;
}

.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart {
  display: inline-block !important;
  width: auto !important;
  min-width: 160px;
  text-align: center !important;
  white-space: nowrap !important;
  padding: 14px 20px !important;
  border-radius: 10px !important;
  background: #7ea6d9 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .added_to_cart:hover {
  background: #d90429 !important;
  color: #ffffff !important;
}

@media (max-width: 991px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }

  .woocommerce ul.products li.product a.button,
  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product .added_to_cart {
    width: 100% !important;
    min-width: 0;
    white-space: normal !important;
  }
}
.oem-homepage section {
  padding: 50px 0;
}

.oem-section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.oem-section-heading h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.oem-section-heading p {
  max-width: 620px;
  margin: 0 auto;
}
body {
  color: #4f4f53;
}

h1, h2, h3, h4 {
  color: #2f2f33;
  letter-spacing: -0.02em;
}
.oem-hero h1 {
  font-size: 54px;
  line-height: 1.05;
  max-width: 850px;
  margin: 0 auto 18px;
}
.woocommerce ul.products li.product {
  padding: 20px 20px 24px !important;
}
.woocommerce ul.products li.product a.button {
  letter-spacing: 0.3px;
}
.woocommerce span.onsale {
  background: #d90429 !important;
  border-radius: 50px !important;
  padding: 6px 10px !important;
  font-size: 12px !important;
}
.oem-marquee {
  overflow: hidden;
  white-space: nowrap;
  background: #ffffff;
  padding: 14px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.oem-marquee-track {
  display: inline-block;
  animation: oem-scroll 18s linear infinite;
}

.oem-marquee span {
  font-size: 18px;
  font-weight: 700;
  color: #2f2f33;
  letter-spacing: 2px;
  margin-right: 40px;
}

@keyframes oem-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
animation: oem-scroll 28s linear infinite;
.oem-marquee {
  background: #2f2f33;
}

.oem-marquee span {
  color: #ffffff;
}
.oem-marquee span {
  color: #d90429;
}
.oem-marquee span {
  font-size: 24px;
}
.oem-marquee span {
  color: #2f2f33;
}
.oem-about-hero {
  text-align: center;
  padding: 80px 0;
  background: var(--oem-light-bg);
}

.oem-about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.oem-about-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--oem-text);
}

.oem-about-story,
.oem-about-services,
.oem-about-trust,
.oem-about-why,
.oem-about-cta {
  padding: 70px 0;
}

.oem-about-story p {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
}

.oem-about-trust {
  background: #f5f5f5;
  text-align: center;
}

.oem-about-cta {
  text-align: center;
  background: #2f2f33;
  color: #ffffff;
}

.oem-about-cta p {
  color: #dddddd;
  max-width: 600px;
  margin: 0 auto 20px;
}
.oem-about-page {
  background: var(--oem-white);
  color: var(--oem-dark);
  font-family: Arial, sans-serif;
}

.oem-about-page section {
  padding: 70px 0;
}

.oem-about-hero {
  text-align: center;
  background: var(--oem-light-bg);
}

.oem-about-hero h1 {
  font-size: 46px;
  margin-bottom: 14px;
  color: var(--oem-dark);
}

.oem-about-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 50px;
  line-height: 1.6;
  color: var(--oem-text);
}

.oem-about-story,
.oem-about-services,
.oem-about-trust,
.oem-about-why {
  background: var(--oem-white);
}

.oem-about-story h2,
.oem-about-services h2,
.oem-about-trust h2,
.oem-about-why h2,
.oem-about-cta h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 18px;
  color: var(--oem-dark);
}

.oem-about-story p {
  max-width: 820px;
  margin: 0 auto 18px;
  text-align: center;
  line-height: 1.7;
  color: var(--oem-text);
}

.oem-about-services .oem-benefit-grid,
.oem-about-why .oem-benefit-grid,
.oem-about-trust .oem-testimonial-grid {
  display: grid;
  gap: 24px;
}

.oem-about-services .oem-benefit-grid,
.oem-about-why .oem-benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.oem-about-trust .oem-testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.oem-about-trust {
  background: var(--oem-light-bg);
  text-align: center;
}

.oem-about-trust > .oem-container > p {
  text-align: center;
  color: var(--oem-text);
  margin-bottom: 30px;
}

.oem-about-cta {
  background: #2f2f33;
  color: #ffffff;
  text-align: center;
  border-radius: 18px;
  margin: 40px auto;
  max-width: 1100px;
}

.oem-about-cta .oem-container {
  padding: 10px 30px;
}

.oem-about-cta h2,
.oem-about-cta p {
  color: #ffffff;
}

.oem-about-cta p {
  max-width: 680px;
  margin: 0 auto 22px;
  line-height: 1.6;
}

.oem-about-page .oem-card {
  background: var(--oem-white);
  border: 1px solid var(--oem-border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.oem-about-page .oem-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--oem-dark);
}

.oem-about-page .oem-card p {
  margin: 0;
  color: var(--oem-text);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .oem-about-services .oem-benefit-grid,
  .oem-about-why .oem-benefit-grid,
  .oem-about-trust .oem-testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .oem-about-hero h1 {
    font-size: 38px;
  }

  .oem-about-story h2,
  .oem-about-services h2,
  .oem-about-trust h2,
  .oem-about-why h2,
  .oem-about-cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .oem-about-page section {
    padding: 50px 0;
  }

  .oem-about-services .oem-benefit-grid,
  .oem-about-why .oem-benefit-grid,
  .oem-about-trust .oem-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .oem-about-hero h1 {
    font-size: 32px;
  }

  .oem-about-hero p,
  .oem-about-story p,
  .oem-about-cta p {
    font-size: 16px;
  }

  .oem-about-cta {
    margin: 20px 12px;
    border-radius: 14px;
  }

  .oem-about-cta .oem-container {
    padding: 0 18px;
  }
}

body {
  font-family: 'Inter', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

* {
  transition: all 0.25s ease;
}



.booking-page {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  color: #111;
  line-height: 1.6;
  position: relative;
}

.booking-page * {
  box-sizing: border-box;
}

.booking-page .hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
              url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 110px 20px 130px;
  color: #fff;
}

.booking-page .hero h1 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.booking-page .hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.booking-page .highlight {
  color: #ff3b30;
}

.booking-page .container {
  max-width: 1120px;
  margin: -85px auto 80px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.booking-page .booking-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.12);
  overflow: hidden;
}

.booking-page .card-header {
  padding: 38px 40px;
  border-bottom: 1px solid #ececec;
}

.booking-page .card-header h2 {
  font-size: 28px;
  margin: 0 0 8px;
  color: #111827;
}

.booking-page .card-header p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
}

.booking-page form {
  padding: 38px 40px;
}

.booking-page .form-section {
  margin-bottom: 34px;
}

.booking-page .form-section h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #111827;
  border-left: 4px solid #e53935;
  padding-left: 12px;
}

.booking-page .grid {
  display: grid;
  gap: 18px;
}

.booking-page .grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.booking-page .grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.booking-page .field {
  display: flex;
  flex-direction: column;
}

.booking-page .field label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #374151;
}

.booking-page .field input,
.booking-page .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d7dce3;
  border-radius: 12px;
  font-size: 15px;
  background: #fff;
}

.booking-page .field textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-page .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.booking-page .service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
}

.booking-page .service-item label {
  margin: 0;
  font-size: 15px;
  color: #111827;
}

.booking-page .service-item input[type="checkbox"] {
  accent-color: #e53935;
  width: 18px;
  height: 18px;
}

.booking-page .submit-wrap {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #ececec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.booking-page .submit-note {
  max-width: 650px;
  color: #6b7280;
  font-size: 14px;
}

.booking-page .submit-btn {
  background: #e53935;
  color: #fff;
  border: none;
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.booking-page .submit-btn:hover {
  background: #c92e2a;
}

.oem-whatsapp-banner {
  width: 100%;
  background: #e53935;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  margin-top: 30px;
}

.oem-whatsapp-track {
  display: inline-block;
  white-space: nowrap;
  animation: oemscroll 18s linear infinite;
}

.oem-whatsapp-track span {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-right: 80px;
}

@keyframes oemscroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

.oem-whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  z-index: 9999;
}

.oem-whatsapp-button:hover {
  background: #1ebc59;
}

@media (max-width: 900px) {
  .booking-page .hero {
    padding: 90px 20px 110px;
  }

  .booking-page .hero h1 {
    font-size: 34px;
  }

  .booking-page .container {
    margin: -70px auto 60px;
  }

  .booking-page .grid-2,
  .booking-page .grid-3,
  .booking-page .services-grid {
    grid-template-columns: 1fr;
  }

  .booking-page .card-header,
  .booking-page form {
    padding: 24px;
  }
}


.oem-homepage {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  color: #111827;
}

.oem-homepage * {
  box-sizing: border-box;
}

.oem-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.oem-section-label,
.oem-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #e53935;
  margin-bottom: 14px;
}

.oem-section-heading {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.oem-section-heading h2 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #111827;
}

.oem-section-heading p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
}

.oem-hero {
  position: relative;
  background:
    linear-gradient(rgba(6,10,18,0.74), rgba(6,10,18,0.82)),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 110px 0 90px;
  overflow: hidden;
}

.oem-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.oem-hero-text {
  max-width: 620px;
}

.oem-hero h1 {
  color: #fff;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.oem-subtext {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.84);
  max-width: 580px;
  margin: 0 0 28px;
}

.oem-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.oem-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.oem-hero-points span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.oem-hero-image {
  min-height: 460px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(15,23,42,0.15), rgba(15,23,42,0.4)),
    url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
  overflow: hidden;
}

.oem-hero-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
}

.oem-mini-card {
  max-width: 280px;
  background: rgba(255,255,255,0.94);
  color: #111827;
  padding: 18px 18px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.oem-mini-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.oem-mini-card span {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.oem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s ease;
}

.oem-btn-primary {
  background: #e53935;
  color: #fff;
  box-shadow: 0 12px 28px rgba(229,57,53,0.24);
}

.oem-btn-primary:hover {
  background: #c92e2a;
  transform: translateY(-2px);
}

.oem-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
}

.oem-btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.oem-benefits,
.oem-trust {
  padding: 90px 0;
}

.oem-benefit-grid,
.oem-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.oem-card {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 12px 35px rgba(15,23,42,0.05);
}

.oem-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #111827;
}

.oem-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: 15px;
}

.oem-service-strip {
  padding: 0 0 90px;
}

.oem-service-strip-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  border-radius: 28px;
  padding: 34px 36px;
  box-shadow: 0 20px 50px rgba(17,24,39,0.18);
}

.oem-service-strip-wrap h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  color: #fff;
  max-width: 700px;
}

.oem-trust-rating {
  color: #6b7280;
  font-size: 16px;
}

.oem-quote-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #111827;
}

.oem-final-cta {
  padding: 0 0 100px;
}

.oem-final-cta-wrap {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 30px;
  padding: 42px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 16px 40px rgba(15,23,42,0.06);
}

.oem-final-cta-wrap h2 {
  margin: 0 0 10px;
  font-size: 34px;
  color: #111827;
}

.oem-final-cta-wrap p {
  margin: 0;
  max-width: 680px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .oem-hero-grid,
  .oem-benefit-grid,
  .oem-testimonial-grid,
  .oem-final-cta-wrap {
    grid-template-columns: 1fr;
  }

  .oem-hero-grid {
    display: grid;
  }

  .oem-benefit-grid,
  .oem-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oem-service-strip-wrap,
  .oem-final-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .oem-hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .oem-hero {
    padding: 80px 0 70px;
  }

  .oem-hero h1,
  .oem-section-heading h2,
  .oem-final-cta-wrap h2,
  .oem-service-strip-wrap h2 {
    font-size: 32px;
  }

  .oem-benefit-grid,
  .oem-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .oem-hero-image {
    min-height: 300px;
  }

  .oem-card,
  .oem-final-cta-wrap,
  .oem-service-strip-wrap {
    padding: 24px;
  }
}
.oem-hero-image {
  height: 380px;              /* controls height */
  max-height: 420px;
  border-radius: 24px;
  overflow: hidden;

  background-size: cover;
  background-position: center;
}
.oem-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* text bigger, image smaller */
  gap: 40px;
  align-items: center;
}
.oem-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
}
@media (max-width: 900px) {
  .oem-hero-grid {
    grid-template-columns: 1fr;
  }

  .oem-hero-image {
    height: 260px;
    margin-top: 20px;
  }
}
.oem-final-cta-wrap {
  padding: 28px 36px;   /* was too big */
  min-height: auto;
}
.oem-final-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.oem-final-cta-wrap {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.oem-final-cta {
  background: transparent;
  padding: 60px 0 80px;
}
@media (max-width: 768px) {
  .oem-final-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .oem-final-cta-wrap .oem-btn {
    width: 100%;
    text-align: center;
  }
}
.oem-final-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.oem-final-cta-text {
  max-width: 600px;
}
.oem-final-cta-text h2 {
  font-size: 32px;
  margin: 0 0 10px;
  color: #111827;
}

.oem-final-cta-text p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

.oem-section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e53935;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.oem-final-cta {
  padding: 0 0 100px;
}

.oem-final-cta-box {
  background: #ffffff;
  border: 1px solid #eceff3;
  border-radius: 28px;
  padding: 38px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  box-shadow: 0 16px 40px rgba(15,23,42,0.06);
}

.oem-final-cta-text {
  max-width: 700px;
}

.oem-final-cta-text h2 {
  margin: 0 0 10px;
  font-size: 34px;
  color: #111827;
}

.oem-final-cta-text p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}

.oem-final-cta-action {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .oem-final-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

  .oem-final-cta-text h2 {
    font-size: 28px;
  }

  .oem-final-cta-action {
    width: 100%;
  }

  .oem-final-cta-action .oem-btn {
    width: 100%;
    text-align: center;
  }
}
.oem-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.oem-hero-points span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}
.oem-final-cta-text h2 {
  color: #111827;
}

.oem-final-cta-text p {
  color: #111827;
}

.oem-final-cta-text .oem-section-label {
  color: #e53935; /* keep your red accent */
}
.oem-final-cta {
  padding: 0 0 100px;
}

.oem-final-cta-box {
  background: #ffffff;
  border: 1px solid #eceff3;
  border-radius: 28px;
  padding: 38px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  box-shadow: 0 16px 40px rgba(15,23,42,0.06);
}

.oem-final-cta-text {
  max-width: 700px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.oem-final-cta-text .oem-section-label {
  display: block !important;
  color: #e53935 !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin: 0 0 12px;
}

.oem-final-cta-text h2 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #111827 !important;
  font-size: 34px;
  margin: 0 0 12px;
  line-height: 1.15;
}

.oem-final-cta-text p {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #374151 !important;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.oem-final-cta-action {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .oem-final-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

  .oem-final-cta-text h2 {
    font-size: 28px;
  }

  .oem-final-cta-action {
    width: 100%;
  }

  .oem-final-cta-action .oem-btn {
    width: 100%;
    text-align: center;
  }
}



.oem-about-page {
  font-family: Arial, sans-serif;
  color: #111111;
  background: #ffffff;
}

.oem-about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.oem-about-narrow {
  max-width: 860px;
  text-align: center;
}

.oem-about-section {
  padding: 90px 0;
}

.oem-about-section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.oem-about-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #777777;
}

.oem-about-eyebrow.light {
  color: rgba(255,255,255,0.75);
}

.oem-about-page h1,
.oem-about-page h2,
.oem-about-page h3 {
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: inherit;
}

.oem-about-page h1 {
  font-size: 56px;
  font-weight: 700;
}

.oem-about-page h2 {
  font-size: 40px;
  font-weight: 600;
}

.oem-about-page h3 {
  font-size: 22px;
  font-weight: 600;
}

.oem-about-page p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a4a;
}

.oem-about-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat;
  overflow: hidden;
}

.oem-about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.72) 100%
  );
}

.oem-about-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.oem-about-hero h1,
.oem-about-hero p {
  color: #ffffff;
}

.oem-about-subtext {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 20px;
  color: rgba(255,255,255,0.88);
}

.oem-about-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 28px;
}

.oem-about-buttons.center {
  justify-content: center;
}

.oem-about-hero-inner .oem-about-buttons {
  justify-content: center;
}

.oem-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.oem-about-btn-primary {
  background: #ffffff;
  color: #111111;
}

.oem-about-btn-primary:hover {
  transform: translateY(-2px);
  background: #f3f3f3;
}

.oem-about-btn-secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

.oem-about-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}

.oem-about-intro {
  background: #ffffff;
}

.oem-about-dark {
  background: #0f0f10;
  color: #ffffff;
}

.oem-about-dark h2,
.oem-about-dark h3,
.oem-about-dark p {
  color: #ffffff;
}

.oem-about-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.oem-about-feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
}

.oem-about-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: #ffffff;
  color: #111111;
  font-weight: 700;
}

.oem-about-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.oem-about-image-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oem-about-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.oem-about-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.oem-about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.oem-about-image-card:hover img {
  transform: scale(1.04);
}

.oem-about-card-content {
  padding: 24px;
}

.oem-about-soft {
  background: #f7f7f7;
}

.oem-about-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.oem-about-offer-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.oem-about-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

.oem-about-cta {
  background: #111111;
  text-align: center;
}

.oem-about-cta h2,
.oem-about-cta p {
  color: #ffffff;
}

.oem-about-cta p {
  color: rgba(255,255,255,0.82);
}

/* Responsive */
@media (max-width: 1024px) {
  .oem-about-page h1 {
    font-size: 46px;
  }

  .oem-about-page h2 {
    font-size: 34px;
  }

  .oem-about-feature-grid,
  .oem-about-image-grid,
  .oem-about-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .oem-about-section {
    padding: 70px 0;
  }

  .oem-about-page h1 {
    font-size: 34px;
  }

  .oem-about-page h2 {
    font-size: 28px;
  }

  .oem-about-page h3 {
    font-size: 20px;
  }

  .oem-about-page p {
    font-size: 16px;
  }

  .oem-about-feature-grid,
  .oem-about-image-grid,
  .oem-about-offer-grid {
    grid-template-columns: 1fr;
  }

  .oem-about-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .oem-about-btn {
    width: 100%;
  }

  .oem-about-hero {
    min-height: 68vh;
  }
}
/* Center the whole testimonials section */
.oem-testimonials,
.oem-reviews,
.oem-reputation {
  text-align: center;
}

/* Center the grid */
.oem-testimonials-grid,
.oem-reviews-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Style individual cards */
.oem-testimonial-card {
  max-width: 320px;
  text-align: center;
}

/* Center text inside cards */
.oem-testimonial-card p {
  text-align: center;
}
/* Mobile hero image fix */
@media (max-width: 767px) {
  .oem-hero,
  .oem-home-hero,
  .elementor-section.oem-hero {
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 70vh !important;
  }
}
/* Keep header above hero sections */
header,
.elementor-location-header,
.site-header,
.oem-header {
  position: relative;
  z-index: 9999 !important;
}


/* ===== HOME HERO MOBILE FIX ===== */
.oem-hero {
  overflow: hidden;
}

.oem-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.oem-hero-image {
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* make overlay content sit nicely */
.oem-hero-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .oem-hero {
    padding: 28px 0 40px;
  }

  .oem-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .oem-hero-text {
    order: 1;
    text-align: center;
    max-width: 100%;
  }

  .oem-hero-image {
    order: 2;
    min-height: 320px !important;
    width: 100%;
    border-radius: 22px !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .oem-hero h1 {
    font-size: 36px !important;
    line-height: 1.08 !important;
    margin-bottom: 14px !important;
  }

  .oem-subtext {
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
  }

  .oem-eyebrow {
    font-size: 12px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
  }

  .oem-hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 18px !important;
  }

  .oem-hero-buttons a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .oem-hero-points {
    margin-top: 18px !important;
    text-align: center !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .oem-hero-image-overlay {
    padding: 16px !important;
    align-items: flex-end !important;
  }

  .oem-mini-card {
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}


 /* ===== MOBILE ONLY HERO CLEANUP ===== */
@media (max-width: 767px) {

  /* Remove the hero image block */
  .oem-hero-image {
    display: none !important;
  }

  /* Make layout single column */
  .oem-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Center text */
  .oem-hero-text {
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  /* Improve spacing */
  .oem-hero {
    padding: 70px 20px 50px !important;
  }

  /* Typography adjustments */
  .oem-hero h1 {
    font-size: 34px !important;
    line-height: 1.08 !important;
    margin-bottom: 14px !important;
  }

  .oem-subtext {
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }

  /* Stack buttons nicely */
  .oem-hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .oem-hero-buttons a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Fix invisible text issue */
  .oem-hero-points {
    color: rgba(255,255,255,0.75) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-top: 16px !important;
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .oem-hero {
    background: linear-gradient(135deg, #0f1117 0%, #1a1f2b 100%) !important;
  }
}
.site-main {
  padding: 0 !important;
  margin: 0 !important;
}
/* Remove theme spacing around Elementor content */
.site-main,
.wp-site-blocks,
main.wp-block-group {
  padding: 0 !important;
  margin: 0 !important;
}

/* Make Elementor sections sit flush */
.elementor-section:first-child {
  margin-top: 0 !important;
}

.elementor-widget-wrap,
.elementor-column-wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.wp-site-blocks,
.site-main,
.site-content {
  max-width: 100% !important;
}
.oem-homepage .oem-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}

.oem-homepage .oem-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.oem-homepage .oem-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.oem-homepage .oem-hero-text {
  width: 100%;
  max-width: 620px;
}

.oem-homepage .oem-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.oem-homepage .oem-hero h1 {
  font-size: clamp(52px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 0 0 24px;
}

.oem-homepage .oem-subtext {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 28px;
}

.oem-homepage .oem-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .oem-homepage .oem-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .oem-homepage .oem-hero-text {
    max-width: 100%;
  }

  .oem-homepage .oem-hero h1 {
    font-size: 54px;
  }
}

@media (max-width: 767px) {
  .oem-homepage .oem-container {
    padding: 0 20px;
  }

  .oem-homepage .oem-hero {
    min-height: auto;
    padding: 70px 0 50px;
  }

  .oem-homepage .oem-hero h1 {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .oem-homepage .oem-subtext {
    font-size: 16px;
  }

  .oem-homepage .oem-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .oem-homepage .oem-hero-buttons .oem-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .your-card-class {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* CONTACT PAGE PREMIUM UPGRADE */
body.page-contact-us {
  background: #f5f5f3;
}

/* Main page sections */
body.page-contact-us .site-main,
body.page-contact-us .entry-content {
  background: #f5f5f3;
}

/* First intro section */
body.page-contact-us .oem-contact-hero {
  background: #f7f6f2;
  padding: 110px 30px 90px;
  text-align: center;
}

body.page-contact-us .oem-contact-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -1.8px;
  color: #111111;
  margin-bottom: 20px;
  font-weight: 600;
}

body.page-contact-us .oem-contact-hero p {
  font-size: 20px;
  line-height: 1.6;
  color: #5f5f5f;
  max-width: 760px;
  margin: 0 auto 30px;
}

/* Main red button */
body.page-contact-us .oem-contact-hero .oem-btn,
body.page-contact-us .oem-contact-hero a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  background: #e63b32;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

body.page-contact-us .oem-contact-hero .oem-btn:hover,
body.page-contact-us .oem-contact-hero a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

/* Middle WhatsApp CTA section */
body.page-contact-us .oem-contact-whatsapp {
  background: #151515;
  padding: 95px 30px;
  text-align: center;
}

body.page-contact-us .oem-contact-whatsapp h2 {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  font-weight: 600;
}

body.page-contact-us .oem-contact-whatsapp p {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 32px;
}

body.page-contact-us .oem-contact-whatsapp .oem-btn,
body.page-contact-us .oem-contact-whatsapp a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
}

body.page-contact-us .oem-contact-whatsapp .oem-btn:hover,
body.page-contact-us .oem-contact-whatsapp a:hover {
  background: #ffffff;
  color: #111111 !important;
  border-color: #ffffff;
}


/* WRAPPER */
.oem-contact {
  background: #f5f5f3;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* GLOBAL CONTAINER */
.oem-contact .oem-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

/* ================= HERO ================= */
.oem-contact-hero {
  background: #f7f6f2;
  padding: 120px 20px 100px;
}

.oem-contact-hero h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -1.5px;
  color: #111;
  margin-bottom: 20px;
  font-weight: 600;
}

.oem-contact-hero p {
  font-size: 20px;
  line-height: 1.6;
  color: #5a5a5a;
  max-width: 720px;
  margin: 0 auto 35px;
}

/* PRIMARY BUTTON */
.oem-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  background: #e63b32;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.oem-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* ================= DARK WHATSAPP SECTION ================= */
.oem-contact-whatsapp {
  background: #111111;
  padding: 100px 20px;
}

.oem-contact-whatsapp h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.oem-contact-whatsapp p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 760px;
  margin: 0 auto 35px;
}

/* SECONDARY BUTTON */
.oem-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}

.oem-btn-secondary:hover {
  background: #ffffff;
  color: #111 !important;
  border-color: #fff;
}

/* ================= CONTACT DETAILS ================= */
.oem-contact-details {
  background: #efede8;
  padding: 100px 20px 120px;
}

/* CARD EFFECT */
.oem-contact-details .oem-container {
  background: rgba(255,255,255,0.6);
  border-radius: 28px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
}

.oem-contact-details h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: #111;
  margin-bottom: 30px;
  font-weight: 600;
}

.oem-contact-details p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 10px;
}

/* ================= REVIEW TEXT ================= */
.oem-contact + p {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 20px;
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {

  .oem-contact-hero {
    padding: 80px 20px 70px;
  }

  .oem-contact-whatsapp {
    padding: 80px 20px;
  }

  .oem-contact-details {
    padding: 80px 20px 100px;
  }

  .oem-contact-hero p,
  .oem-contact-whatsapp p,
  .oem-contact-details p {
    font-size: 16px;
  }

  .oem-btn-primary,
  .oem-btn-secondary {
    width: auto;
    min-width: 220px;
  }

  .oem-contact-details .oem-container {
    padding: 35px 25px;
  }
}

@media (max-width: 767px) {
  .oem-contact-hero {
    padding: 56px 20px 48px !important;
  }

  .oem-contact-whatsapp {
    padding: 56px 20px !important;
  }

  .oem-contact-details {
    padding: 56px 20px 64px !important;
  }

  .oem-contact-hero h1,
  .oem-contact-whatsapp h2,
  .oem-contact-details h2 {
    margin-bottom: 14px !important;
  }

  .oem-contact-hero p,
  .oem-contact-whatsapp p,
  .oem-contact-details p {
    margin-bottom: 14px !important;
    line-height: 1.55 !important;
  }

  .oem-contact .oem-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .oem-contact-details .oem-container {
    padding: 28px 20px !important;
    border-radius: 20px !important;
  }

  .oem-btn-primary,
  .oem-btn-secondary {
    min-width: 190px !important;
    padding: 12px 20px !important;
  }

  .oem-contact + p {
    margin-top: 12px !important;
    margin-bottom: 18px !important;
    font-size: 13px !important;
  }
}
.oem-homepage {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  color: #111827;
}

.oem-homepage * {
  box-sizing: border-box;
}

.oem-homepage .oem-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.oem-homepage .oem-section-label,
.oem-homepage .oem-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #e53935;
  margin-bottom: 14px;
}

.oem-homepage .oem-section-heading {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.oem-homepage .oem-section-heading h2 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #111827;
}

.oem-homepage .oem-section-heading p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
}

.oem-homepage .oem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s ease;
}

.oem-homepage .oem-btn-primary {
  background: #e53935;
  color: #fff;
  box-shadow: 0 12px 28px rgba(229,57,53,0.24);
}

.oem-homepage .oem-btn-primary:hover {
  background: #c92e2a;
  transform: translateY(-2px);
}

.oem-homepage .oem-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
}

.oem-homepage .oem-btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.oem-homepage.oem-hero {
  position: relative;
  background:
    linear-gradient(rgba(6,10,18,0.74), rgba(6,10,18,0.82)),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 110px 0 90px;
  overflow: hidden;
}

.oem-homepage .oem-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.oem-homepage .oem-hero-text {
  max-width: 620px;
}

.oem-homepage .oem-hero h1,
.oem-homepage.oem-hero h1 {
  color: #fff;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 18px;
}

.oem-homepage .oem-subtext {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.84);
  max-width: 580px;
  margin: 0 0 28px;
}

.oem-homepage .oem-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.oem-homepage .oem-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.oem-homepage .oem-hero-points span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.oem-homepage .oem-hero-image {
  height: 380px;
  max-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(15,23,42,0.15), rgba(15,23,42,0.4)),
    url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
}

.oem-homepage .oem-hero-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
}

.oem-homepage .oem-mini-card {
  max-width: 280px;
  background: rgba(255,255,255,0.94);
  color: #111827;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.oem-homepage .oem-mini-card strong {
  display: block;
  margin-bottom: 6px;
}

.oem-homepage .oem-mini-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.oem-homepage.oem-benefits,
.oem-homepage.oem-trust {
  padding: 90px 0;
}

.oem-homepage .oem-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.oem-homepage .oem-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.oem-homepage .oem-card {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 12px 35px rgba(15,23,42,0.05);
}

.oem-homepage .oem-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #111827;
}

.oem-homepage .oem-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: 15px;
}

.oem-homepage.oem-service-strip {
  padding: 0 0 90px;
}

.oem-homepage .oem-service-strip-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  border-radius: 28px;
  padding: 34px 36px;
  box-shadow: 0 20px 50px rgba(17,24,39,0.18);
}

.oem-homepage .oem-service-strip-wrap h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  color: #fff;
  max-width: 700px;
}

.oem-homepage .oem-trust-rating {
  color: #6b7280;
  font-size: 16px;
}

.oem-homepage .oem-quote-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #111827;
}

.oem-homepage.oem-final-cta {
  padding: 0 0 100px;
}

.oem-homepage .oem-final-cta-box {
  background: #ffffff;
  border: 1px solid #eceff3;
  border-radius: 28px;
  padding: 38px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  box-shadow: 0 16px 40px rgba(15,23,42,0.06);
}

.oem-homepage .oem-final-cta-text {
  max-width: 700px;
}

.oem-homepage .oem-final-cta-text h2 {
  margin: 0 0 10px;
  font-size: 34px;
  color: #111827;
}

.oem-homepage .oem-final-cta-text p {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.6;
}

.oem-homepage .oem-final-cta-action {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .oem-homepage .oem-hero-grid {
    grid-template-columns: 1fr;
  }

  .oem-homepage .oem-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oem-homepage .oem-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .oem-homepage .oem-service-strip-wrap,
  .oem-homepage .oem-final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .oem-homepage.oem-hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .oem-homepage.oem-hero {
    padding: 80px 0 70px;
  }

  .oem-homepage .oem-section-heading h2,
  .oem-homepage .oem-service-strip-wrap h2,
  .oem-homepage .oem-final-cta-text h2,
  .oem-homepage.oem-hero h1 {
    font-size: 32px;
  }

  .oem-homepage .oem-benefit-grid {
    grid-template-columns: 1fr;
  }

  .oem-homepage .oem-hero-image {
    height: 260px;
    margin-top: 20px;
  }

  .oem-homepage .oem-card,
  .oem-homepage .oem-service-strip-wrap,
  .oem-homepage .oem-final-cta-box {
    padding: 24px;
  }
}
.oem-homepage.oem-hero-simple {
  background: #111827;
  color: #fff;
  padding: 90px 0;
}

.oem-homepage .oem-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.oem-homepage .oem-hero-simple-wrap {
  max-width: 720px;
}

.oem-homepage .oem-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ff5a4f;
  margin-bottom: 14px;
}

.oem-homepage .oem-hero-simple h1 {
  font-size: 52px;
  line-height: 1.05;
  margin: 0 0 18px;
  color: #fff;
}

.oem-homepage .oem-hero-simple p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0 0 26px;
}

.oem-homepage .oem-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.oem-homepage .oem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.oem-homepage .oem-btn-primary {
  background: #e53935;
  color: #fff;
}

.oem-homepage .oem-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}

@media (max-width: 767px) {
  .oem-homepage .oem-hero-simple h1 {
    font-size: 34px;
  }

  .oem-homepage.oem-hero-simple {
    padding: 70px 0;
  }
}
.oem-service-strip {
  padding: 40px 20px 80px;
}

.oem-service-strip-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  background: linear-gradient(135deg, #0f172a, #1f2937);
  border-radius: 20px;
}

/* TEXT */
.oem-service-strip-wrap h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}

/* LABEL */
.oem-service-strip .oem-section-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  color: #ff4d4d;
}

/* BUTTON */
.oem-service-strip-wrap .oem-btn {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .oem-service-strip-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .oem-service-strip-wrap h2 {
    font-size: 18px;
  }

  .oem-service-strip-wrap .oem-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
.oem-hero-simple p {
  color: rgba(255,255,255,0.82);
}
.oem-hero-simple p {
  color: rgba(255,255,255,0.7);
}
.oem-hero-simple h1 {
  font-weight: 500;
  letter-spacing: -0.5px;
}
.oem-hero-simple h1,
.oem-hero-simple p {
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.oem-service-strip-wrap {
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


/* Remove all background images */
footer,
.oem-about-hero,
.oem-hero,
.oem-banner,
.oem-service-strip {
  background-image: none !important;
}

body {
  background: #f5f7fa;
}

/* Sections */
section {
  background: transparent;
}

/* Cards */
.oem-card,
.oem-about-feature-card,
.oem-about-offer-card,
.oem-work-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
}
footer {
  background: #111827;
  color: #ffffff;
  padding: 60px 0;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
}

footer a:hover {
  color: #fa0126;
}

footer h4 {
  color: #ffffff;
  margin-bottom: 12px;
}

footer p {
  color: #9ca3af;
}
.oem-btn-primary {
  background: #fa0126;
  color: #fff;
  border: none;
}

.oem-btn-primary:hover {
  background: #d90021;
}

.oem-btn-secondary {
  background: transparent;
  border: 1px solid #e5e7eb;
  color: #111827;
}

.oem-btn-secondary:hover {
  border-color: #fa0126;
  color: #fa0126;
}
.oem-section-label {
  color: #6a94c6;
}
/* Remove shadows that feel heavy */
.oem-card,
.oem-about-feature-card {
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* Remove excessive rounded chaos */
* {
  border-radius: inherit;
}
.oem-hero,
.oem-about-hero {
  background: #111827;
  color: #fff;
}
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.3px;
}

p {
  line-height: 1.6;
}
.woocommerce ul.products {
  margin-top: 20px;
}

.woocommerce ul.products li.product {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  transition: all 0.25s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.woocommerce ul.products li.product img {
  border-radius: 12px;
  margin-bottom: 10px;
}

.woocommerce ul.products li.product h2 {
  font-size: 18px;
  color: #111827;
}

.woocommerce ul.products li.product .price {
  color: #111827;
  font-weight: 600;
  margin-bottom: 10px;
}

.woocommerce ul.products li.product .button {
  background: #fa0126;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
}

.woocommerce ul.products li.product .button:hover {
  background: #d90021;
}
@media (max-width: 768px) {

  /* Global container padding */
  .oem-container {
    padding: 0 16px;
  }

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }

  section {
    padding: 60px 0 !important;
  }

}
@media (max-width: 768px) {

  .oem-products-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
    display: grid;
    gap: 16px;
  }

  .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
  }

}
@media (max-width: 768px) {

  .oem-service-strip-wrap {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px !important;
    gap: 12px;
  }

  .oem-service-strip-wrap h2 {
    font-size: 18px !important;
    line-height: 1.4;
  }

  .oem-service-strip-wrap .oem-btn {
    width: 100%;
    text-align: center;
  }

}
@media (max-width: 768px) {

  .oem-hero-simple h1,
  .oem-about-hero h1 {
    font-size: 32px !important;
    line-height: 1.1;
  }

  .oem-hero-simple p,
  .oem-about-subtext {
    font-size: 16px !important;
  }

}
@media (max-width: 768px) {

  .oem-hero-buttons,
  .oem-products-cta,
  .oem-about-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .oem-btn {
    width: 100%;
    text-align: center;
  }

}
@media (max-width: 768px) {

  .oem-about-feature-grid,
  .oem-about-offer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .oem-about-feature-card,
  .oem-about-offer-card {
    padding: 18px;
  }

}
* {
  max-width: 100%;
  box-sizing: border-box;
}
/* OEM brand colour force override */
body,
.oem-homepage,
.oem-about-page {
  background: #f5f7fa !important;
  color: #111827 !important;
}

.oem-hero,
.oem-about-hero,
.oem-service-strip-wrap,
.oem-about-dark,
footer {
  background: #ffffff !important;
  background-image: none !important;
}

.oem-hero-simple,
.oem-about-hero,
.oem-about-dark,
.oem-service-strip-wrap,
footer {
  background-color: #111827 !important;
}

.oem-btn-primary,
.oem-about-btn-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: #fa0126 !important;
  border-color: #fa0126 !important;
  color: #ffffff !important;
}

.oem-btn-secondary,
.oem-about-btn-secondary {
  background: #ffffff !important;
  border: 1px solid #dbe3ec !important;
  color: #111827 !important;
}

.oem-btn-secondary:hover,
.oem-about-btn-secondary:hover {
  border-color: #6a94c6 !important;
  color: #6a94c6 !important;
}

.oem-section-label,
.oem-eyebrow,
.oem-about-eyebrow {
  color: #6a94c6 !important;
}

a,
.oem-product-link {
  color: #fa0126 !important;
}

.oem-card,
.oem-about-feature-card,
.oem-about-offer-card,
.oem-final-cta-box,
.oem-product-card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #111827 !important;
}

p,
li,
span {
  color: #6b7280;
}
p,
li {
  color: #6b7280;
}
/* Keep headings strong */
h1, h2, h3, h4, h5, h6 {
  color: #111827 !important;
}

/* Default text */
p,
li {
  color: #6b7280;
}

/* Labels / eyebrow text */
.oem-section-label,
.oem-eyebrow,
.oem-about-eyebrow {
  color: #6a94c6 !important;
}

/* Hero text */
.oem-hero-simple h1,
.oem-hero-simple p,
.oem-hero-simple .oem-eyebrow,
.oem-about-hero h1,
.oem-about-hero p,
.oem-about-hero .oem-about-eyebrow {
  color: #111827 !important;
}

/* Hero points / badges */
.oem-hero-points span {
  color: #111827 !important;
}

/* Buttons */
.oem-btn-primary,
.oem-about-btn-primary {
  color: #ffffff !important;
}

.oem-btn-secondary,
.oem-about-btn-secondary {
  color: #111827 !important;
}

/* Menu links */
.menu a,
nav a,
header a {
  color: #111827 !important;
}

/* If you want active/hover menu links in brand red */
.menu a:hover,
nav a:hover,
header a:hover {
  color: #fa0126 !important;
}
/* FIX SERVICE STRIP TEXT VISIBILITY */
.oem-service-strip,
.oem-service-strip-wrap {
  color: #ffffff !important;
}

.oem-service-strip h2,
.oem-service-strip p,
.oem-service-strip span {
  color: #ffffff !important;
}

/* Make the small "SERVICES" label readable */
.oem-service-strip .oem-section-label {
  color: #6a94c6 !important;
  opacity: 1;
}
p,
li {
  color: #6b7280;
}
/* Default text only on light backgrounds */
section:not(.oem-service-strip):not(.oem-about-dark) p,
section:not(.oem-service-strip):not(.oem-about-dark) li {
  color: #6b7280;
}
/* Booking hero readability fix */
.booking-page .hero {
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.72)),
    url('YOUR-IMAGE-HERE') center/cover no-repeat !important;
}

.booking-page .hero h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.booking-page .hero p {
  color: rgba(255,255,255,0.88) !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.booking-page .hero .highlight {
  color: #fa0126 !important;
}



/* FIX ABOUT HERO TEXT VISIBILITY */
.oem-about-hero .oem-about-eyebrow {
  color: #ffffff !important;
  opacity: 1 !important;
  letter-spacing: 1.5px;
}

/* Make sure ALL text in that strip is visible */
.oem-about-hero,
.oem-about-hero * {
  color: #ffffff !important;
}
.oem-about-overlay {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.55)
  ) !important;
}
/* ABOUT PAGE HERO TEXT FORCE FIX */
.oem-about-page .oem-about-hero,
.oem-about-page .oem-about-hero * {
  color: #ffffff !important;
}

.oem-about-page .oem-about-eyebrow {
  color: #ffffff !important;
  opacity: 1 !important;
}

.oem-about-page .oem-about-hero h1 {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.oem-about-page .oem-about-subtext,
.oem-about-page .oem-about-hero p {
  color: rgba(255,255,255,0.92) !important;
  opacity: 1 !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

/* Stronger overlay for readability */
.oem-about-page .oem-about-overlay {
  background: rgba(0,0,0,0.55) !important;
}\
/* ABOUT US CTA DARK SECTION FIX */
.oem-about-page .oem-about-cta,
.oem-about-page .oem-about-cta * {
  color: #ffffff !important;
}

.oem-about-page .oem-about-cta h2 {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}

.oem-about-page .oem-about-cta p {
  color: rgba(255,255,255,0.9) !important;
  opacity: 1 !important;
}

.oem-about-page .oem-about-cta .oem-about-eyebrow {
  color: #ffffff !important;
  letter-spacing: 1.5px;
  opacity: 1 !important;
}
/* WHY CHOOSE SECTION (DARK BACKGROUND FIX) */
.oem-about-dark {
  background: #111827 !important;
  color: #ffffff !important;
}

/* Headings */
.oem-about-dark h2 {
  color: #ffffff !important;
}

.oem-about-dark .oem-about-eyebrow {
  color: #6a94c6 !important;
}

/* Cards inside this section */
.oem-about-dark .oem-about-feature-card {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid #e5e7eb;
}

/* Card headings */
.oem-about-dark .oem-about-feature-card h3 {
  color: #111827 !important;
}

/* Card text */
.oem-about-dark .oem-about-feature-card p {
  color: #6b7280 !important;
}

/* Remove weird blue highlight / selection look */
.oem-about-dark *::selection {
  background: rgba(250, 1, 38, 0.2);
  color: #111827;
}
/* HOME PAGE HERO IMAGE */
.oem-homepage .oem-hero-simple,
.oem-homepage .oem-hero {
  background:
    linear-gradient(rgba(10, 16, 28, 0.62), rgba(10, 16, 28, 0.72)),
    url('https://oem-plus.co.za/wp-content/uploads/2026/04/DSC06091.jpeg') center center / cover no-repeat !important;
}

/* ABOUT US HERO IMAGE */
.oem-about-page .oem-about-hero {
  background:
    linear-gradient(rgba(10, 16, 28, 0.62), rgba(10, 16, 28, 0.72)),
    url('https://oem-plus.co.za/wp-content/uploads/2026/04/DSC04845.jpg') center center / cover no-repeat !important;
  position: relative;
}

/* CONTACT US HERO IMAGE */
.oem-contact-page .oem-contact-hero,
.oem-contact-hero {
  background:
    linear-gradient(rgba(10, 16, 28, 0.62), rgba(10, 16, 28, 0.72)),
    url('https://oem-plus.co.za/wp-content/uploads/2026/04/MRR-287.jpg') center center / cover no-repeat !important;
  position: relative;
}

/* Make hero text readable on all three */
.oem-homepage .oem-hero-simple h1,
.oem-homepage .oem-hero h1,
.oem-about-page .oem-about-hero h1,
.oem-contact-page .oem-contact-hero h1,
.oem-contact-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
}

.oem-homepage .oem-hero-simple p,
.oem-homepage .oem-hero p,
.oem-about-page .oem-about-hero p,
.oem-contact-page .oem-contact-hero p,
.oem-contact-hero p {
  color: rgba(255,255,255,0.9) !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
}

/* Eyebrow / small top labels */
.oem-homepage .oem-eyebrow,
.oem-about-page .oem-about-eyebrow,
.oem-contact-page .oem-contact-eyebrow,
.oem-contact-hero .oem-contact-eyebrow {
  color: #dbe7f5 !important;
  letter-spacing: 1.5px;
}

/* Buttons on image heroes */
.oem-homepage .oem-btn-primary,
.oem-about-page .oem-about-btn-primary,
.oem-contact-page .oem-contact-btn-primary,
.oem-contact-hero .oem-contact-btn-primary {
  background: #fa0126 !important;
  color: #ffffff !important;
}

.oem-homepage .oem-btn-secondary,
.oem-about-page .oem-about-btn-secondary,
.oem-contact-page .oem-contact-btn-secondary,
.oem-contact-hero .oem-contact-btn-secondary {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  color: #ffffff !important;
  backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  .oem-homepage .oem-hero-simple,
  .oem-homepage .oem-hero,
  .oem-about-page .oem-about-hero,
  .oem-contact-page .oem-contact-hero,
  .oem-contact-hero {
    background-position: center center !important;
  }
}
/* CONTACT PAGE - DARK SECTION TEXT FIX */
.oem-contact-page .oem-contact-whatsapp,
.oem-contact-page .oem-contact-whatsapp * {
  color: #ffffff !important;
}

/* Heading */
.oem-contact-page .oem-contact-whatsapp h2 {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}

/* Paragraph */
.oem-contact-page .oem-contact-whatsapp p {
  color: rgba(255,255,255,0.9) !important;
  opacity: 1 !important;
}

/* Button */
.oem-contact-page .oem-contact-whatsapp .oem-btn {
  background: #fa0126 !important;
  color: #ffffff !important;
  border: none !important;
}
/* FORCE ANY DARK SECTION ON CONTACT PAGE */
.oem-contact-page section:nth-of-type(2),
.oem-contact-page section:nth-of-type(2) * {
  color: #ffffff !important;
}
/* REMOVE OVERLAY ON CONTACT HERO */
.oem-contact-page .oem-contact-hero::before,
.oem-contact-page .oem-contact-hero .overlay,
.oem-contact-page .oem-contact-hero .oem-contact-overlay {
  display: none !important;
  background: none !important;
}
/* CLEAN FULL IMAGE BACKGROUND */
.oem-contact-page .oem-contact-hero {
  background: url('https://oem-plus.co.za/wp-content/uploads/2026/04/DSC06091.jpeg') center center / cover no-repeat !important;
}
/* FLOATING TEXT CARD EFFECT */
.oem-contact-page .oem-contact-hero-inner {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
}

/* TEXT COLOURS INSIDE CARD */
.oem-contact-page .oem-contact-hero h1 {
  color: #111827 !important;
}

.oem-contact-page .oem-contact-hero p {
  color: #4b5563 !important;
}
.oem-contact-page .oem-contact-hero .oem-btn {
  background: #fa0126 !important;
  color: #ffffff !important;
}
/* CONTACT PAGE - FORCE ALL TEXT TO WHITE */
.oem-contact-page,
.oem-contact-page * {
  color: #ffffff !important;
}

/* Keep buttons styled correctly */
.oem-contact-page .oem-btn-primary {
  background: #fa0126 !important;
  color: #ffffff !important;
}

.oem-contact-page .oem-btn-secondary {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: #ffffff !important;
}
/* FIX TEXT INSIDE WHITE CARDS / FORMS */
.oem-contact-page .oem-card,
.oem-contact-page .oem-contact-form,
.oem-contact-page input,
.oem-contact-page textarea {
  color: #111827 !important;
}
.oem-contact-page h1,
.oem-contact-page h2,
.oem-contact-page h3,
.oem-contact-page p,
.oem-contact-page span,
.oem-contact-page a {
  color: #ffffff !important;
}
/* CONTACT US - FASTEST WAY TO REACH US section */
.oem-contact-whatsapp,
.oem-contact-whatsapp h1,
.oem-contact-whatsapp h2,
.oem-contact-whatsapp h3,
.oem-contact-whatsapp h4,
.oem-contact-whatsapp p,
.oem-contact-whatsapp span,
.oem-contact-whatsapp a,
.oem-contact-whatsapp strong {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Keep button readable */
.oem-contact-whatsapp .oem-btn,
.oem-contact-whatsapp .button {
  background: #ffffff !important;
  color: #111827 !important;
  border: none !important;
}

/* If the heading is still dark, force it harder */
.oem-contact-whatsapp h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

/* Paragraph tone */
.oem-contact-whatsapp p {
  color: rgba(255,255,255,0.9) !important;
}
/* Fallback: second dark section on contact page */
.oem-contact-page section:nth-of-type(2),
.oem-contact-page section:nth-of-type(2) h1,
.oem-contact-page section:nth-of-type(2) h2,
.oem-contact-page section:nth-of-type(2) h3,
.oem-contact-page section:nth-of-type(2) p,
.oem-contact-page section:nth-of-type(2) span,
.oem-contact-page section:nth-of-type(2) a {
  color: #ffffff !important;
  opacity: 1 !important;
}
.oem-contact-page h1,
.oem-contact-page h2,
.oem-contact-page h3,
.oem-contact-page p,
.oem-contact-page span,
.oem-contact-page a {
  color: #ffffff !important;
}
.oem-contact-page .oem-contact-hero h1,
.oem-contact-page .oem-contact-hero p,
.oem-contact-page .oem-contact-whatsapp h2,
.oem-contact-page .oem-contact-whatsapp p,
.oem-contact-page .oem-contact-whatsapp span,
.oem-contact-page .oem-contact-whatsapp a {
  color: #ffffff !important;
}
.oem-product-enquiry {
  padding: 40px 0 20px;
}

.oem-product-enquiry-wrap {
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
}

.oem-product-enquiry-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 24px;
}

.oem-product-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6a94c6;
  margin-bottom: 12px;
}

.oem-product-enquiry-content h1 {
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 12px;
  color: #111827;
}

.oem-product-price {
  font-size: 22px;
  font-weight: 700;
  color: #fa0126;
  margin: 0 0 16px;
}

.oem-product-text {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 18px;
}

.oem-product-points {
  margin: 0;
  padding-left: 18px;
  color: #111827;
}

.oem-product-points li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .oem-product-enquiry-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .oem-product-enquiry-content h1 {
    font-size: 32px;
  }
}
.oem-booking-footer {
  background: #0f172a;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.oem-booking-footer-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.oem-footer-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #6a94c6;
  margin-bottom: 12px;
}

.oem-booking-footer h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.oem-footer-text {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 30px;
}

.oem-footer-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  color: #e5e7eb;
}

.oem-footer-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.oem-btn-primary {
  background: #fa0126;
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.oem-btn-secondary {
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
}

.oem-btn-secondary:hover {
  background: #fff;
  color: #111;
}
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  color: #f5f5f5;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: #ffffff;
  opacity: 0.85;
  font-size: 14px;
}
.btn-primary {
  background: #fa0126;
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  backdrop-filter: blur(10px);
}
/* Center ONLY the final footer CTA section */

.oem-final-cta,
.oem-final-cta-box,
.oem-final-cta-text,
.oem-final-cta-action {
  text-align: center;
}

/* Center button properly */
.oem-final-cta-action {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Optional: tighten layout for premium feel */
.oem-final-cta-text h2 {
  margin-bottom: 10px;
}

.oem-final-cta-text p {
  margin-bottom: 10px;
}
.oem-final-cta-box {
  max-width: 700px;
  margin: 0 auto;
}
/* Reduce space BELOW the final CTA */
.oem-final-cta {
  padding-bottom: 40px !important;  /* reduce this if still too big */
  margin-bottom: 0 !important;
}

/* Remove extra spacing inside */
.oem-final-cta-box {
  margin-bottom: 0 !important;
}

/* Kill any paragraph spacing stacking */
.oem-final-cta-text p {
  margin-bottom: 8px;
}

/* Remove extra space AFTER section (common WP issue) */
.oem-final-cta + section,
.oem-final-cta + div {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* Force tighter section spacing globally (only near footer area) */
.oem-final-cta {
  padding: 60px 20px 40px 20px !important;
}
/* HERO TEXT → FORCE WHITE */
.oem-hero,
.oem-hero * {
  color: #ffffff !important;
}

/* Subtext softer white (premium look) */
.oem-hero .oem-subtext {
  color: rgba(255,255,255,0.85) !important;
}

/* Eyebrow (top small text) */
.oem-hero .oem-eyebrow {
  color: rgba(255,255,255,0.7) !important;
}

/* Hero feature points */
.oem-hero-points span {
  color: rgba(255,255,255,0.8) !important;
}
.oem-hero::before {
  background: rgba(0,0,0,0.25); /* lighter overlay */
}
/* HERO IMAGE OVERLAY */
.oem-hero::before {
  background: rgba(0,0,0,0.25) !important;
}

/* ABOUT / DARK SECTIONS */
.oem-about-hero::before,
.oem-contact-hero::before {
  background: rgba(0,0,0,0.25) !important;
}

/* FINAL CTA DARK BLOCK */
.oem-final-cta::before {
  background: rgba(0,0,0,0.3) !important;
}
/* ===== PRODUCTS SECTION ===== */

.oem-home-products {
  padding: 80px 20px;
  background: #f7f7f7;
}

.oem-products-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.oem-products-heading h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.oem-products-subtext {
  color: #666;
  font-size: 16px;
}

/* GRID */
.oem-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.oem-product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.oem-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.oem-product-image {
  background: #f2f2f2;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 18px;
}

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

/* CONTENT */
.oem-product-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.oem-product-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* FOOTER */
.oem-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.oem-product-price {
  font-weight: 600;
  font-size: 16px;
}

/* BUTTON */
.oem-product-link {
  font-size: 13px;
  color: #fff;
  background: #fa0126;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.2s;
}

.oem-product-link:hover {
  background: #d4001f;
}

/* CTA BELOW GRID */
.oem-products-cta {
  text-align: center;
  margin-top: 40px;
}

.oem-products-cta .oem-btn {
  margin: 8px;
}

/* ===== MOBILE FIX (VERY IMPORTANT) ===== */

@media (max-width: 768px) {

  .oem-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .oem-home-products {
    padding: 50px 16px;
  }

  .oem-products-heading h2 {
    font-size: 24px;
  }

  .oem-product-card {
    padding: 18px;
    border-radius: 16px;
  }

  .oem-product-image {
    padding: 14px;
  }

  .oem-product-content h3 {
    font-size: 16px;
    text-align: center;
  }

  .oem-product-content p {
    text-align: center;
  }

  .oem-product-footer {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .oem-product-link {
    width: 100%;
    text-align: center;
  }
}
.oem-homepage {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  color: #111827;
}

.oem-homepage * {
  box-sizing: border-box;
}

.oem-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.oem-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://oem-plus.co.za/wp-content/uploads/2026/04/DSC04845.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.oem-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}

.oem-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 90px 24px;
}

.oem-eyebrow,
.oem-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #dbe7f5;
  margin-bottom: 14px;
}

.oem-hero h1 {
  color: #ffffff;
  font-size: 58px;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -1px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}

.oem-subtext {
  color: rgba(255,255,255,0.9);
  font-size: 19px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 28px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}

.oem-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.oem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s ease;
}

.oem-btn-primary {
  background: #fa0126;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(250,1,38,0.24);
}

.oem-btn-primary:hover {
  background: #d90021;
  transform: translateY(-2px);
}

.oem-btn-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.oem-btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.oem-hero-points {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.oem-hero-points span {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}

/* GENERAL SECTION HEADING */
.oem-section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.oem-section-heading .oem-section-label {
  color: #6a94c6;
}

.oem-section-heading h2 {
  font-size: 42px;
  line-height: 1.12;
  margin: 0;
  color: #111827;
}

/* BENEFITS */
.oem-benefits {
  padding: 90px 0;
  background: #f5f7fa;
}

.oem-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.oem-card {
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.05);
}

.oem-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #111827;
}

.oem-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: 15px;
}

/* SERVICE STRIP */
.oem-service-strip {
  padding: 0 0 90px;
}

.oem-service-strip-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #111827;
  border-radius: 28px;
  padding: 34px 36px;
  box-shadow: 0 18px 40px rgba(17,24,39,0.16);
}

.oem-service-strip-text {
  text-align: left;
}

.oem-service-strip-text .oem-section-label {
  color: #6a94c6;
  margin-bottom: 8px;
}

.oem-service-strip-text h2 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
  max-width: 720px;
}

/* TRUST */
.oem-trust {
  padding: 0 0 90px;
}

.oem-trust-rating {
  margin-top: 12px;
  color: #6b7280;
  font-size: 16px;
}

.oem-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.oem-quote-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #111827;
}

/* FINAL CTA */
.oem-final-cta {
  padding: 0 0 50px;
}

.oem-final-cta .oem-container {
  max-width: 900px;
}

.oem-final-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 28px;
  padding: 42px 32px;
  box-shadow: 0 14px 34px rgba(15,23,42,0.05);
}

.oem-final-cta-text {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.oem-final-cta-text .oem-section-label {
  color: #6a94c6;
}

.oem-final-cta-text h2 {
  margin: 0 0 12px;
  font-size: 38px;
  color: #111827;
}

.oem-final-cta-copy {
  margin: 0 auto;
  max-width: 640px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
}

.oem-final-cta-action {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

/* MOBILE */
@media (max-width: 1024px) {
  .oem-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oem-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .oem-service-strip-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .oem-service-strip-text {
    text-align: left;
  }

  .oem-hero h1 {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .oem-hero {
    min-height: 78vh;
  }

  .oem-hero-content {
    padding: 70px 18px;
  }

  .oem-hero h1 {
    font-size: 36px;
  }

  .oem-subtext {
    font-size: 16px;
  }

  .oem-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .oem-btn {
    width: 100%;
    max-width: 280px;
  }

  .oem-benefit-grid {
    grid-template-columns: 1fr;
  }

  .oem-service-strip {
    padding-bottom: 70px;
  }

  .oem-service-strip-wrap {
    padding: 24px;
  }

  .oem-service-strip-text h2 {
    font-size: 22px;
  }

  .oem-section-heading h2,
  .oem-final-cta-text h2 {
    font-size: 30px;
  }

  .oem-card {
    padding: 22px 20px;
  }

  .oem-final-cta-box {
    padding: 30px 22px;
  }
}
.oem-hero {
  background: url('https://oem-plus.co.za/wp-content/uploads/2026/04/DSC04845.jpg') center center / cover no-repeat;
}
.oem-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://oem-plus.co.za/wp-content/uploads/2026/04/DSC04845.jpg') center center / cover no-repeat !important;
  overflow: hidden;
}

.oem-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.oem-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 90px 24px;
  text-align: center;
}

.oem-eyebrow {
  display: block;
  margin: 0 auto 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.oem-hero h1 {
  color: #fff;
  font-size: 58px;
  line-height: 1.05;
  margin: 0 0 18px;
  text-align: center;
}

.oem-subtext {
  color: rgba(255,255,255,0.9);
  font-size: 19px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.oem-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.oem-hero-points {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.oem-hero-points span {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}
.oem-btn-secondary {
  background: #ffffff !important;
  color: #000000 !important;
}

.oem-btn-secondary * {
  color: #000000 !important;
}
.oem-homepage .oem-btn-secondary {
  background: #ffffff !important;
  color: #000000 !important;
}

.oem-homepage .oem-btn-secondary span,
.oem-homepage .oem-btn-secondary a {
  color: #000000 !important;
}
/* ===== MOBILE SPACING FIX ===== */
@media (max-width: 768px) {

  /* General section spacing */
  .oem-homepage section {
    padding: 40px 20px !important;
  }

  /* HERO FIX */
  .oem-hero {
    padding: 60px 20px 40px !important;
    text-align: center !important;
  }

  .oem-hero h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
  }

  .oem-subtext {
    font-size: 14px !important;
    margin-bottom: 20px !important;
  }

  /* Buttons spacing */
  .oem-hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .oem-btn {
    width: 100% !important;
    max-width: 280px !important;
    text-align: center !important;
  }

  /* Pills (OEM-quality parts etc) */
  .oem-hero-points {
    margin-top: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
  }

  /* SERVICES STRIP (dark section) */
  .oem-service-strip {
    padding: 30px 20px !important;
  }

  .oem-service-strip h2 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
  }

  /* TRUST SECTION */
  .oem-trust {
    padding: 40px 20px !important;
  }

  .oem-section-heading h2 {
    font-size: 22px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .oem-trust-rating {
    text-align: center !important;
    margin-bottom: 20px !important;
  }

  /* Testimonials spacing */
  .oem-testimonial-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
  }

  /* FINAL CTA FIX */
  .oem-final-cta {
    padding: 40px 20px !important;
  }

  .oem-final-cta-box {
    padding: 25px !important;
    text-align: center !important;
  }

  .oem-final-cta-action {
    margin-top: 20px !important;
  }
}
.oem-card {
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}
@media (max-width: 768px) {

  /* General page spacing */
  .oem-homepage section {
    padding: 32px 16px !important;
  }

  /* Section headings */
  .oem-section-heading {
    margin: 0 auto 24px !important;
    text-align: center !important;
  }

  .oem-section-heading h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  .oem-section-label {
    font-size: 11px !important;
    margin-bottom: 8px !important;
  }

  /* Benefit cards */
  .oem-benefit-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .oem-card {
    padding: 18px 16px !important;
    border-radius: 18px !important;
  }

  .oem-card h3 {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .oem-card p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  /* Service strip */
  .oem-service-strip {
    padding: 24px 16px !important;
  }

  .oem-service-strip-wrap {
    padding: 22px 18px !important;
    border-radius: 22px !important;
    gap: 16px !important;
  }

  .oem-service-strip-text h2 {
    font-size: 22px !important;
    line-height: 1.25 !important;
  }

  /* Trust section */
  .oem-trust {
    padding: 32px 16px !important;
  }

  .oem-testimonial-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .oem-quote-card p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  /* Final CTA */
  .oem-final-cta {
    padding: 24px 16px 36px !important;
  }

  .oem-final-cta .oem-container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .oem-final-cta-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 18px !important;
    border-radius: 22px !important;
  }

  .oem-final-cta-text h2 {
    font-size: 22px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  .oem-final-cta-copy {
    font-size: 14px !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
  }

  .oem-final-cta-action {
    margin-top: 16px !important;
  }

  .oem-final-cta-action .oem-btn {
    width: 100% !important;
    max-width: 260px !important;
  }
}
[products ids="94,92,514" columns="3" orderby="post__in"]
/* ===== FEATURED PRODUCTS / SHORTCODE GRID ===== */

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  list-style: none;
  position: relative;
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 0 0 22px;
  text-align: center;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

/* Sale badge */
.woocommerce ul.products li.product .onsale {
  top: 14px !important;
  right: 14px !important;
  left: auto !important;
  margin: 0 !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1 !important;
  padding: 10px 12px !important;
  border-radius: 999px !important;
  background: #fa0126 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

/* Product image area */
.woocommerce ul.products li.product a img {
  width: 100% !important;
  max-width: 260px;
  height: auto !important;
  margin: 0 auto 16px !important;
  display: block;
  object-fit: contain;
}

.woocommerce ul.products li.product a:first-child {
  display: block;
  background: #f8fafc;
  padding: 22px;
  margin-bottom: 0;
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-size: 22px !important;
  line-height: 1.25 !important;
  color: #111827 !important;
  margin: 0 18px 14px !important;
  padding: 0;
}

/* Price */
.woocommerce ul.products li.product .price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 18px 18px !important;
  color: #111827 !important;
  font-size: 18px !important;
  font-weight: 700;
}

.woocommerce ul.products li.product .price del {
  color: #9ca3af !important;
  opacity: 1 !important;
  font-size: 16px !important;
  font-weight: 500;
}

.woocommerce ul.products li.product .price ins {
  color: #111827 !important;
  text-decoration: none !important;
  background: transparent !important;
}

/* Button */
.woocommerce ul.products li.product .button {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: calc(100% - 36px);
  max-width: 220px;
  margin: 0 auto !important;
  padding: 13px 18px !important;
  border-radius: 999px !important;
  background: #fa0126 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 1.2;
  border: none !important;
  box-shadow: none !important;
  transition: background 0.25s ease, transform 0.25s ease;
}

.woocommerce ul.products li.product .button:hover {
  background: #d90021 !important;
  transform: translateY(-1px);
}

/* Optional: cleaner button text if using enquiries instead of cart */
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .button.product_type_simple {
  font-size: 0 !important;
}

.woocommerce ul.products li.product .button.add_to_cart_button::after,
.woocommerce ul.products li.product .button.product_type_simple::after {
  content: "Request this part";
  font-size: 14px;
  font-weight: 700;
}

/* Hide unwanted clutter if present */
.woocommerce ul.products li.product .star-rating {
  display: none !important;
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .woocommerce ul.products li.product {
    border-radius: 18px;
    padding-bottom: 20px;
  }

  .woocommerce ul.products li.product a:first-child {
    padding: 18px;
  }

  .woocommerce ul.products li.product a img {
    max-width: 220px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product h2 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin: 0 16px 12px !important;
  }

  .woocommerce ul.products li.product .price {
    margin: 0 16px 16px !important;
  }

  .woocommerce ul.products li.product .price del,
  .woocommerce ul.products li.product .price ins,
  .woocommerce ul.products li.product .price {
    font-size: 16px !important;
  }

  .woocommerce ul.products li.product .button {
    width: calc(100% - 32px);
    max-width: 100%;
  }
}
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .button.product_type_simple {
  font-size: 0 !important;
}
content: "Request this part";
.booking-page .hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  background: url('https://oem-plus.co.za/wp-content/uploads/2026/04/DSC04845.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.booking-page .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.booking-page .hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.booking-page .hero-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.booking-page .hero h1 {
  margin: 0 0 18px;
  font-size: 52px;
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.8px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.22);
}

.booking-page .hero-subtext {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 18px rgba(0,0,0,0.22);
}

.booking-page .hero-contact-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.booking-page .hero-contact-line span {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}

@media (max-width: 768px) {
  .booking-page .hero {
    min-height: 360px;
    padding: 60px 18px 40px;
  }

  .booking-page .hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .booking-page .hero-subtext {
    font-size: 16px;
    line-height: 1.55;
  }

  .booking-page .hero-contact-line {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .booking-page .hero-contact-line span {
    width: auto;
    max-width: 100%;
  }
}
.oem-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.oem-product-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.oem-product-card img {
  width: 100%;
  border-radius: 12px;
}

.oem-product-card h3 {
  font-size: 16px;
  margin: 10px 0;
}

.oem-product-card .price {
  font-weight: 600;
  margin-bottom: 10px;
}

.oem-product-card .oem-btn {
  display: inline-block;
  background: #ff1f2d;
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
}
.oem-shop-page {
  background: #f5f7fa;
  color: #111827;
  font-family: Arial, sans-serif;
}

.oem-shop-page * {
  box-sizing: border-box;
}

.oem-shop-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.oem-shop-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://oem-plus.co.za/wp-content/uploads/2026/04/DSC04845.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.oem-shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}

.oem-shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 24px;
}

.oem-shop-eyebrow,
.oem-shop-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.oem-shop-eyebrow {
  color: rgba(255,255,255,0.82);
}

.oem-shop-hero h1 {
  color: #ffffff;
  font-size: 52px;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.8px;
}

.oem-shop-subtext {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* PRODUCTS SECTION */
.oem-shop-products {
  padding: 80px 0;
}

.oem-shop-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.oem-shop-heading .oem-shop-label {
  color: #6a94c6;
}

.oem-shop-heading h2 {
  font-size: 38px;
  line-height: 1.12;
  margin: 0 0 12px;
  color: #111827;
}

.oem-shop-intro {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}

/* WOO SHORTCODE GRID */
.oem-shop-shortcode-wrap .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
}

.oem-shop-shortcode-wrap .woocommerce ul.products::before,
.oem-shop-shortcode-wrap .woocommerce ul.products::after {
  display: none !important;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  list-style: none;
  position: relative;
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 0 0 22px;
  text-align: center;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product .onsale {
  top: 14px !important;
  right: 14px !important;
  left: auto !important;
  margin: 0 !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1 !important;
  padding: 10px 12px !important;
  border-radius: 999px !important;
  background: #fa0126 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product a:first-child {
  display: block;
  background: #f8fafc;
  padding: 22px;
  margin-bottom: 0;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product a img {
  width: 100% !important;
  max-width: 260px;
  height: auto !important;
  margin: 0 auto 16px !important;
  display: block;
  object-fit: contain;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product .woocommerce-loop-product__title,
.oem-shop-shortcode-wrap .woocommerce ul.products li.product h2 {
  font-size: 22px !important;
  line-height: 1.25 !important;
  color: #111827 !important;
  margin: 0 18px 14px !important;
  padding: 0;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product .price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 18px 18px !important;
  color: #111827 !important;
  font-size: 18px !important;
  font-weight: 700;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product .price del {
  color: #9ca3af !important;
  opacity: 1 !important;
  font-size: 16px !important;
  font-weight: 500;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product .price ins {
  color: #111827 !important;
  text-decoration: none !important;
  background: transparent !important;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product .button {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: calc(100% - 36px);
  max-width: 220px;
  margin: 0 auto !important;
  padding: 13px 18px !important;
  border-radius: 999px !important;
  background: #fa0126 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 1.2;
  border: none !important;
  box-shadow: none !important;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product .button:hover {
  background: #d90021 !important;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product .button.add_to_cart_button,
.oem-shop-shortcode-wrap .woocommerce ul.products li.product .button.product_type_simple {
  font-size: 0 !important;
}

.oem-shop-shortcode-wrap .woocommerce ul.products li.product .button.add_to_cart_button::after,
.oem-shop-shortcode-wrap .woocommerce ul.products li.product .button.product_type_simple::after {
  content: "Request this part";
  font-size: 14px;
  font-weight: 700;
}

/* HELP SECTION */
.oem-shop-help {
  padding: 0 0 70px;
}

.oem-shop-help-box {
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 26px;
  padding: 38px 28px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(15,23,42,0.05);
}

.oem-shop-help-box .oem-shop-label {
  color: #6a94c6;
}

.oem-shop-help-box h2 {
  margin: 0 0 12px;
  font-size: 34px;
  color: #111827;
}

.oem-shop-help-box p {
  margin: 0 auto;
  max-width: 620px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
}

.oem-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #fa0126;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.oem-shop-btn:hover {
  background: #d90021;
}

/* MOBILE */
@media (max-width: 1024px) {
  .oem-shop-shortcode-wrap .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .oem-shop-hero {
    min-height: 300px;
  }

  .oem-shop-hero-content {
    padding: 56px 18px;
  }

  .oem-shop-hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .oem-shop-subtext {
    font-size: 16px;
  }

  .oem-shop-products {
    padding: 56px 0;
  }

  .oem-shop-heading h2 {
    font-size: 28px;
  }

  .oem-shop-shortcode-wrap .woocommerce ul.products {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .oem-shop-shortcode-wrap .woocommerce ul.products li.product {
    border-radius: 18px;
    padding-bottom: 20px;
  }

  .oem-shop-shortcode-wrap .woocommerce ul.products li.product a:first-child {
    padding: 18px;
  }

  .oem-shop-shortcode-wrap .woocommerce ul.products li.product a img {
    max-width: 220px;
  }

  .oem-shop-shortcode-wrap .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .oem-shop-shortcode-wrap .woocommerce ul.products li.product h2 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin: 0 16px 12px !important;
  }

  .oem-shop-shortcode-wrap .woocommerce ul.products li.product .price {
    margin: 0 16px 16px !important;
  }

  .oem-shop-shortcode-wrap .woocommerce ul.products li.product .price del,
  .oem-shop-shortcode-wrap .woocommerce ul.products li.product .price ins,
  .oem-shop-shortcode-wrap .woocommerce ul.products li.product .price {
    font-size: 16px !important;
  }

  .oem-shop-shortcode-wrap .woocommerce ul.products li.product .button {
    width: calc(100% - 32px);
    max-width: 100%;
  }

  .oem-shop-help-box {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .oem-shop-help-box h2 {
    font-size: 26px;
  }
}
/* ===== SHOP / PRODUCT LIST PAGE SPACING + TEXT FIX ===== */

/* remove extra top gap */
.oem-shop-page {
  padding-top: 0 !important;
}

.oem-shop-hero {
  margin-top: 0 !important;
  min-height: 320px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: hidden;
}

/* tighter hero container */
.oem-shop-hero-content {
  max-width: 760px !important;
  padding: 56px 24px !important;
  text-align: center !important;
}

/* make text readable */
.oem-shop-hero h1 {
  color: #ffffff !important;
  font-size: 46px !important;
  line-height: 1.08 !important;
  margin: 0 0 14px !important;
  letter-spacing: -0.6px !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.28) !important;
}

.oem-shop-subtext {
  color: rgba(255,255,255,0.92) !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
  max-width: 620px !important;
  margin: 0 auto !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.22) !important;
}

.oem-shop-eyebrow {
  color: rgba(255,255,255,0.82) !important;
  margin-bottom: 12px !important;
}

/* slightly darker overlay for legibility */
.oem-shop-hero-overlay {
  background: rgba(0,0,0,0.34) !important;
}

/* tighten spacing between hero and product section */
.oem-shop-products {
  padding: 52px 0 64px !important;
}

.oem-shop-heading {
  margin: 0 auto 28px !important;
}

.oem-shop-heading h2 {
  font-size: 34px !important;
  line-height: 1.12 !important;
  margin: 0 0 10px !important;
}

.oem-shop-intro {
  max-width: 680px !important;
  margin: 0 auto !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* tighten help section */
.oem-shop-help {
  padding: 0 0 56px !important;
}

.oem-shop-help-box {
  max-width: 760px !important;
  padding: 34px 26px !important;
}

.oem-shop-help-box h2 {
  font-size: 32px !important;
  margin: 0 0 10px !important;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .oem-shop-hero {
    min-height: 260px !important;
  }

  .oem-shop-hero-content {
    padding: 42px 18px !important;
  }

  .oem-shop-hero h1 {
    font-size: 30px !important;
    line-height: 1.12 !important;
    margin-bottom: 12px !important;
  }

  .oem-shop-subtext {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .oem-shop-products {
    padding: 40px 0 48px !important;
  }

  .oem-shop-heading {
    margin-bottom: 22px !important;
  }

  .oem-shop-heading h2 {
    font-size: 26px !important;
  }

  .oem-shop-help-box {
    padding: 26px 18px !important;
  }

  .oem-shop-help-box h2 {
    font-size: 24px !important;
  }
}
/* Bottom help section button = white */
.oem-shop-help-box .oem-shop-btn {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid #e5e7eb !important;
}
.oem-shop-help-box .oem-shop-btn:hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}
.oem-shop-help-box .oem-shop-btn {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.oem-final-cta {
  background: linear-gradient(rgba(11,26,43,0.7), rgba(11,26,43,0.7)),
              url('https://oem-plus.co.za/wp-content/uploads/2026/04/DSC06091.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.oem-final-cta-box {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.05);
}
.oem-cta-bg {
  background: linear-gradient(rgba(11,26,43,0.7), rgba(11,26,43,0.7)),
              url('https://oem-plus.co.za/wp-content/uploads/2026/04/DSC06091.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
/* Remove Add to Cart on product grid */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.product_type_simple {
  display: none !important;
}
/* Remove Add to Cart on single product page */
.single-product .single_add_to_cart_button,
.single-product form.cart {
  display: none !important;
}
/* Remove WooCommerce cart notices */
.woocommerce-message,
.woocommerce-info {
  display: none !important;
}
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.product_type_simple,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart {
  display: none !important;
}

.oem-manual-request {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 36px);
  max-width: 220px;
  margin: 14px auto 0;
  padding: 13px 18px;
  border-radius: 999px;
  background: #fa0126;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

.oem-manual-request:hover {
  background: #d90021;
}

.woocommerce a.added_to_cart,
.woocommerce .added_to_cart,
.woocommerce-message,
.woocommerce-info,
.woocommerce-notices-wrapper {
  display: none !important;
}
footer .site-info,
.footer-bottom,
.copyright {
  display: none !important;
}
.site-info {
  display: none !important;
}
.site-info,
footer .site-info,
#colophon,
.footer-bottom {
  display: none !important;
}
.oem-benefit-grid,
.oem-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.oem-testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.oem-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.oem-card h3 {
  margin-bottom: 12px;
}

.oem-card p {
  margin: 0 0 14px;
  line-height: 1.6;
}

.oem-card a {
  margin-top: auto;
  font-weight: 600;
  text-decoration: none;
}

.oem-section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.oem-trust-rating {
  margin: 12px 0 18px;
}

.oem-trust-rating a {
  text-decoration: none;
}

.oem-quote-card p {
  margin: 0;
}

.oem-service-strip-wrap,
.oem-final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1024px) {
  .oem-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oem-testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .oem-benefit-grid {
    grid-template-columns: 1fr;
  }

  .oem-service-strip-wrap,
  .oem-final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .oem-trust-rating {
    text-align: center !important;
  }


	
	
	
@media (max-width: 768px) {
  .oem-trust .oem-section-heading,
  .oem-trust .oem-section-heading * {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .oem-trust .oem-section-heading {
    display: flex !important;
    flex-direction: column !important;
  }

  .oem-trust-rating {
    width: 100% !important;
    margin: 10px auto 0 !important;
    text-align: center !important;
  }

  .oem-trust-rating img,
  .oem-trust-rating .emoji,
  .oem-trust-rating span,
  .oem-trust-rating a,
  .oem-trust-rating strong,
  .oem-trust-rating em {
    display: inline-block !important;
    text-align: center !important;
  }
}
@media (max-width: 768px) {
  .oem-trust,
  .oem-trust * {
    text-align: center !important;
  }

  .oem-trust .oem-container,
  .oem-trust .oem-section-heading {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
}
@media (max-width: 768px) {

  /* Center the whole trust section */
  .oem-trust,
  .oem-section-heading {
    text-align: center !important;
  }

  /* Center the stars */
  .oem-trust-stars {
    display: flex !important;
    justify-content: center !important;
    gap: 4px;
  }

  /* Center the rating text + link */
  .oem-trust-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .oem-trust-rating a {
    text-align: center !important;
  }

  /* Fix spacing so it doesn't look squashed */
  .oem-trust-rating {
    margin-top: 10px;
  }

}
.oem-trust-stars img {
  width: 18px;
}

.oem-trust-rating a {
  font-size: 14px;
  color: #fa0126;
  text-decoration: none;
}
.oem-trust-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  text-align: center;
}

.oem-trust-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.oem-trust-link {
  display: block;
  text-align: center;
  color: #fa0126;
}
@media (max-width: 768px) {
  .oem-trust .oem-container,
  .oem-trust .oem-section-heading,
  .oem-trust-rating {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .oem-trust .oem-section-heading {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .oem-trust-rating {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .oem-trust-stars {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto 8px !important;
  }

  .oem-trust-link,
  .oem-trust-rating a {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}