/*
Theme Name: ELOIL Theme
Theme URI: https://eloi.lt
Author: ELOI
Author URI: https://eloi.lt
Description: Custom theme for ELOI - Premium EU-manufactured oils and lubricants
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eloil
*/



/* ========== CSS VARIABLES ========== */
:root {
  --orange: #E85A1E;
  --orange-hover: #D14E15;
  --dark: #1A1A1A;
  --gray-900: #2D2D2D;
  --gray-700: #4A4A4A;
  --gray-500: #6B6B6B;
  --gray-300: #B3B3B3;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: #F4F5F5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul, ol {
  list-style: none;
}

/* ========== UTILITY CLASSES ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--gray-100);
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: #E6863D;
  color: var(--white);
}
  .btn-primary svg {
  width: 16px;
  height: 16px;
}


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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
}

.btn-white:hover {
  background: var(--gray-100);
}

.btn-icon {
  width: 20px;
  height: 20px;
}


/* ========== HEADER ========== */
.site-header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #FFFFFF;
}

.header-outer {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 80px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 40px;
  width: auto;
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.2s;
}

.main-nav ul li a:hover {
  color: #E6863D;
}

/* Dropdown arrow for Products */
.main-nav ul li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 120px;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: #F4F5F5;
  color: #1A1A1A;
  border: 1px solid #F4F5F5;
  transition: all 0.2s;
}

.btn-outline-dark:hover {
  background: #1A1A1A;
  color: #FFFFFF;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  transition: all 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  padding: 40px 20px;
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav ul li a {
  display: block;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid #E5E5E5;
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.mobile-nav-buttons .btn {
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-outer {
    padding: 0 40px;
  }
  
  .main-nav ul {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header-outer {
    padding: 0 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-right .btn-outline-dark,
  .header-right .btn-primary {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('assets/images/stock/hero_oil.png') center/cover;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 15, 10, 0.5);
}

.hero-outer {
  width: 100%;
  max-width: 1512px;
  padding: 80px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-logo {
  display: block;
  margin: 0 auto 24px;
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.hero-tagline {
  font-family: 'Beautifully Delicious', cursive;
  font-weight: 600;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: 0;
  text-align: left;
  color: #FFFFFF;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-p {
  font-family: 'Beautifully Delicious', cursive;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-outer {
    padding: 60px 20px;
  }
  
  .hero-tagline {
    font-size: 32px;
    line-height: 38px;
  }
}

/* ========== PARTNERS ========== */
.partners {
  padding: 50px 0;
  background: #F4F5F5;
  border-bottom: 1px solid var(--gray-100);
}

.partners h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  flex-wrap: nowrap;
}

.partner-logo {
  height: 100px;
  width: auto;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ========== INDUSTRIES ========== */
.industries {
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Outer container - 1512px with 80px padding */
.industries-outer {
  width: 100%;
  max-width: 1512px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Inner container - 1280px for cards */
.industries-inner {
  width: 100%;
  max-width: 1280px;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

/* Industries Slider */
.industries-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}

.industries-slider::-webkit-scrollbar {
  display: none;
}

.industry-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 280px;
  height: 400px;
  flex-shrink: 0;
  cursor: pointer;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.industry-card:hover img {
  transform: scale(1.05);
}

.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.industry-card h4 {
  font-family: 'Beautifully Delicious', cursive !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: #FFFFFF;
  margin: 0;
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #F4F5F5;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background-color: #F4F5F5;
}

.slider-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

/* ========== FEATURES ========== */
.features {
  background: #1A1A1A;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-outer {
  width: 100%;
  max-width: 1512px;
  padding: 60px 80px;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.feature-item p {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .features-outer {
    padding: 40px 20px;
  }
  
  .features-grid {
    flex-direction: column;
    gap: 32px;
  }
}

/* ========== WHO WE ARE ========== */
.who-we-are {
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Outer container - 1512px with 80px padding */
.who-we-are-outer {
  width: 100%;
  max-width: 1512px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.who-we-are-outer .section-title {
  margin-bottom: 48px;
}

/* Inner container - 1280px */
.who-we-are-inner {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Content / Text side */
.who-we-are-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.who-we-are-item {
  background: #F4F5F5;
  border-radius: 8px;
  padding: 24px;
}

.who-we-are-item p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #1A1A1A;
  margin: 0;
}

/* Image side */
.who-we-are-image {
  border-radius: 16px;
  overflow: hidden;
}

.who-we-are-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .who-we-are-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .who-we-are-outer {
    padding: 60px 20px;
  }
  
  .who-we-are-item {
    padding: 20px;
  }
}

/* ========== QUALITY ========== */
.quality {
  background: #1A1A1A;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Outer container - 1512px with 80px padding */
.quality-outer {
  width: 100%;
  max-width: 1512px;
  padding: 80px;
}

/* Inner container - 1280px */
.quality-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Content / Text side */
.quality-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quality-content h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
}

.quality-content p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
  color: #DFE1E2;
  margin: 0;
}

/* Image side */
.quality-image {
  border-radius: 16px;
  overflow: hidden;
}

.quality-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .quality-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .quality-content {
    order: 1;
  }
  
  .quality-image {
    order: 2;
  }
}

@media (max-width: 768px) {
  .quality-outer {
    padding: 60px 20px;
  }
  
  .quality-content h2 {
    font-size: 28px;
  }
}

/* ========== MARKETS ========== */
.markets {
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Outer container - 1512px with 80px padding */
.markets-outer {
  width: 100%;
  max-width: 1512px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Content */
.markets-content {
  max-width: 800px;
  text-align: center;
  margin-bottom: 48px;
}

.markets-content h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: #1A1A1A;
  margin: 0 0 20px 0;
}

.markets-content p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #6B6B6B;
  margin: 0;
}

/* Map */
.markets-map {
  width: 100%;
  max-width: 1280px;
}

.markets-description {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  color: #6B6B6B;
  margin: 0;
}

.markets-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .markets-outer {
    padding: 60px 20px;
  }
  
  .markets-content h2 {
    font-size: 28px;
    line-height: 36px;
  }
  
  .markets-content p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: #E6863D;
  padding: 80px;
  text-align: center;
}

@font-face {
  font-family: 'Beautifully Delicious';
  src: url('assets/fonts/BeautifullyDelicious.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.cta-section h2 {
  font-family: 'Beautifully Delicious', cursive;
  font-size: 56px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0;
  color: #FFFFFF;
  margin: 0 0 24px 0;
}

.cta-logo-inline {
  height: 1em;
  width: auto;
  vertical-align: baseline;
  display: inline;
  margin: 0 4px;
  filter: brightness(0) invert(1);
}

.cta-section > .container > p {
  font-family: 'Beautifully Delicious', cursive;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  padding: 8px 0;
  margin: 0 auto 32px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-family: 'Beautifully Delicious', cursive;
  font-size: 15px;
  font-weight: 500;
}

.cta-feature svg {
  width: 22px;
  height: 22px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-white:hover {
  background: #F4F5F5;
}

.btn-white .btn-icon {
  width: 20px;
  height: 20px;
  stroke: #1A1A1A;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }
  
  .cta-section h2 {
    font-size: 36px;
    line-height: 42px;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 80px 0 40px;
  background-color: var(--dark);
  color: var(--gray-300);
}

.site-footer > .container {
  background-image: url('assets/images/footer-background-logo.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact a {
  color: var(--orange);
}

.footer-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer > .container {
    background-position: center center;
    background-size: contain;
  }
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--orange);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gray-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  font-size: 14px;
}

.footer-legal a:hover {
  color: var(--orange);
}

/* ========== WORDPRESS CORE ========== */
.wp-block-image img {
  height: auto;
}

.alignwide {
  max-width: 1200px;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .split-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .split-grid.reverse {
    direction: ltr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-right .btn {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: 550px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-content {
    padding: 120px 0 80px;
  }
  
  .section-title,
  .split-content h2,
  .markets-content h2,
  .cta-section h2 {
    font-size: 28px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .partners-grid {
    gap: 24px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px;
  }
  
  .partner-logo {
    height: 28px;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .industry-card {
    aspect-ratio: 16/9;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .page-hero {
    padding: 120px 0 40px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
}


/* ========== OIL FINDER HERO ========== */
.oil-finder-hero {
  background: #1A1A1A;
  display: flex;
  justify-content: center;
  align-items: center;
}

.oil-finder-hero-outer {
  width: 100%;
  max-width: 1512px;
  padding: 80px 80px 60px;
  text-align: center;
}

.oil-finder-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.oil-finder-hero h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  color: #FFFFFF;
  margin: 0 0 20px 0;
}

.oil-finder-hero p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ========== OIL FINDER SEARCH ========== */
.oil-finder-search {
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.oil-finder-search-outer {
  width: 100%;
  max-width: 1512px;
  padding: 60px 80px 80px;
}

.oil-finder-search-box {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.oil-finder-search-box label {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
}

.search-input-wrapper {
  width: 100%;
}

.search-input-wrapper input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  color: #1A1A1A;
  outline: none;
  transition: border-color 0.2s;
}

.search-input-wrapper input::placeholder {
  color: #B3B3B3;
}

.search-input-wrapper input:focus {
  border-color: #E6863D;
}

.btn-search {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: #E6863D;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-search:hover {
  background: #D4762F;
}

.btn-search svg {
  width: 20px;
  height: 20px;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.popular-searches span {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  color: #6B6B6B;
}

.popular-searches a {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  text-decoration: underline;
  transition: color 0.2s;
}

.popular-searches a:hover {
  color: #E6863D;
}

/* Responsive */
@media (max-width: 768px) {
  .oil-finder-hero-outer {
    padding: 60px 20px 40px;
  }
  
  .oil-finder-hero h1 {
    font-size: 32px;
    line-height: 40px;
  }
  
  .oil-finder-search-outer {
    padding: 40px 20px 60px;
  }
  
  .popular-searches {
    flex-direction: column;
    align-items: center;
  }
}

/* Search Results Dropdown */
.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-results.active {
  display: block;
}

.search-result-item {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  border-bottom: 1px solid #F4F5F5;
  transition: background 0.2s;
}

.search-result-item:hover {
  background: #F4F5F5;
}

.result-name {
  display: block;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1A1A1A;
}

.result-meta {
  display: block;
  font-size: 13px;
  color: #6B6B6B;
  margin-top: 2px;
}

.no-results {
  padding: 16px 20px;
  color: #6B6B6B;
  font-size: 14px;
}

.result-category {
  display: block;
  font-size: 12px;
  color: #E6863D;
  margin-top: 4px;
}

/* ========== PRODUCTS PAGE ========== */
.products-page {
  background: #F4F5F5;
}

.products-outer {
  max-width: 1512px;
  margin: 0 auto;
  padding: 40px 80px 80px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #6B6B6B;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #E6863D;
}

.page-title {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 40px;
}

/* Layout */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Sidebar */
.products-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-group {
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  overflow: hidden;
}

.filter-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #FFFFFF;
  border: none;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  cursor: pointer;
}

.filter-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

.filter-toggle.active svg {
  transform: rotate(180deg);
}

.filter-options {
  display: none;
  padding: 0 20px 16px;
}

.filter-options.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  cursor: pointer;
}

.filter-options input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #E6863D;
}

/* Products List */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Product Card */
.product-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  transition: box-shadow 0.2s;
  background: #ffffff
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: #F4F5F5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-tags {
  display: flex;
  gap: 8px;
}

.tag {
  padding: 4px 10px;
  background: #F4F5F5;
  border-radius: 4px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 12px;
  color: #6B6B6B;
}

.product-name {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
}

.product-qty {
  color: #E6863D;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.product-viscosity {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #E6863D;
  margin: 0;
}

.product-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.product-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-actions {
  display: flex;
  gap: 12px;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 13px;
  color: #1A1A1A;
  background-color: #F4F5F5;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-download:hover {
  border-color: #E6863D;
  color: #E6863D;
}

.filter-options {
  background: #FFFFFF;
}


.btn-download svg {
  width: 16px;
  height: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  margin-left: auto;
  align-self: flex-end;
}

/* Mobile Filters */
.filters-mobile-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .products-layout {
    grid-template-columns: 1fr;
  }
  
  .filters-mobile-toggle {
    display: flex;
    width: 100%;
    margin-bottom: 24px;
  }
  
  .filters-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: #ffffff;
    border: 1px solid #DFE1E2;
    border-radius: 8px;
    font-family: 'Clash Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
  }
  
  .filters-toggle-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
  }
  
  .filters-toggle-btn.active svg {
    transform: rotate(180deg);
  }
  
  .products-sidebar {
    display: none;
    margin-bottom: 24px;
  }
  
  .products-sidebar.active {
    display: flex;
    flex-direction: column;
  }

  .filter-options {
  background: #FFFFFF;
}

  
  .filter-toggle {
    padding: 14px 16px;
  }
  
  .filter-toggle svg {
    transform: rotate(180deg);
  }
  
  .filter-toggle.active svg {
    transform: rotate(0);
  }
  
  .filter-options {
    display: none;
  }
  
  .filter-options.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    padding: 20px;
  }
  
  .product-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
  }
  
  .product-info {
    width: 100%;
  }
  
  .product-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
  }
  
  .product-name {
    font-size: 16px;
  }
  
  .product-qty {
    margin-bottom: 12px;
  }
  
  .product-bottom-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .product-actions {
    display: flex;
    gap: 8px;
    width: 100%;
  }
  
  .btn-download {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
    font-size: 12px;
    background-color:#F4F5F5 ;
  }
  
  .btn-sm {
    width: 100%;
    justify-content: center;
  }
}

.products-list.loading {
  opacity: 0.5;
  pointer-events: none;
}

.no-products {
  padding: 40px;
  text-align: center;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  color: #6B6B6B;
}

/* ========== PRODUCT SINGLE ========== */
.product-single {
  background: #F4F5F5;
}

.product-single-outer {
  max-width: 1512px;
  margin: 0 auto;
  padding: 40px 80px 80px;
}

.product-single-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  margin-top: 24px;
}

.product-single-image {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
}

.product-single-image img {
  max-width: 100%;
  height: auto;
}

.product-single-info {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-single-name {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
}

.product-single-viscosity {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #E6863D;
  margin: 0;
}

.product-single-description {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0;
}

.product-single-types {
  display: flex;
  gap: 60px;
  padding: 20px 0;
}

.type-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.type-item svg {
  width: 24px;
  height: 24px;
  color: #6B6B6B;
  flex-shrink: 0;
}

.type-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.type-label {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 12px;
  color: #6B6B6B;
}

.type-value {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
}

.product-single-specs h4,
.product-single-applications h4,
.product-single-packaging h4 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 8px;
}

.product-single-specs p,
.product-single-applications p,
.product-single-packaging p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #6B6B6B;
  margin: 0;
}

.product-single-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.product-single-actions .btn-primary {
  padding: 14px 24px;
}

.product-downloads {
  display: flex;
  gap: 16px;
}

.product-downloads .btn-download {
  padding: 12px 20px;
  font-weight: 600;
}

.type-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 1024px) {
  .product-single-outer {
    padding: 24px 40px 60px;
  }
  
  .product-single-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .product-single-image {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .product-single-types {
    flex-direction: row;
    gap: 40px;
  }
  
  .product-single-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .product-downloads {
    flex-direction: column;
    width: 100%;
    order: -1;
  }
  
  .product-single-actions .btn-primary {
    width: 100%;
    justify-content: center;
    order: 3;
  }
}

/* ========== ABOUT HERO ========== */
.about-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(20, 15, 10, 0.6), rgba(20, 15, 10, 0.6)),
              url('assets/images/stock/about_us_hero.png') center/cover;
}

.about-hero-outer {
  width: 100%;
  max-width: 1512px;
  padding: 80px;
  text-align: center;
}

.about-hero .btn-primary {
  min-width: 160px;
  white-space: nowrap;
}

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

.about-hero h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.about-hero p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
}

/* ========== MISSION & VISION ========== */
.about-mission {
  background: #FFFFFF;
  display: flex;
  justify-content: center;
}

.about-mission-outer {
  width: 100%;
  max-width: 1512px;
  padding: 80px;
  text-align: center;
}

.section-label {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6B6B6B;
  display: block;
  margin-bottom: 24px;
}

.mission-text,
.vision-text {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
  color: #1A1A1A;
  max-width: 800px;
  margin: 0 auto 16px;
}

.mission-image {
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
}

.mission-image img {
  width: 100%;
  height: auto;
}

/* ========== CORE VALUES ========== */
.core-values {
  background: #F4F5F5;
  display: flex;
  justify-content: center;
}

.core-values-outer {
  width: 100%;
  max-width: 1512px;
  padding: 80px;
}

.core-values-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.core-values-header h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
}

.core-values-header .btn-primary {
  min-width: 160px;
  white-space: nowrap;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
  padding: 0;
}

.value-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 16px;
}

.value-image {
  height: 180px;
  overflow: hidden;
  margin: 16px;
  border-radius: 12px;
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-card h4 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 16px 20px 8px;
}

.value-card p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  margin: 0 20px;
}

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

@media (max-width: 768px) {
  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* Hero button wider */
  .about-hero .btn-primary {
    min-width: 200px;
  }
  
  /* Mission text not bold */
  .mission-text,
  .vision-text {
    font-weight: 400;
    font-size: 16px;
  }
  
  /* Core values header stacked, button at bottom */
  .core-values-header {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  /* Button after grid */
  .core-values-grid {
    margin-bottom: 32px;
  }
  
  .core-values-footer {
    display: flex;
    justify-content: center;
  }
  
  .core-values-footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  
  .core-values-footer .btn-primary {
    min-width: 250px;
    white-space: nowrap;
    padding: 14px 24px;
  }
}

.core-values-footer {
  display: none;
}

.btn-desktop {
  display: inline-flex;
}

.btn-mobile {
  display: none;
}

@media (max-width: 768px) {
  .core-values-header .btn-primary.btn-desktop {
    display: none !important;
  }
  
  .core-values-footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }

    .core-values-footer .btn-mobile {
    display: inline-flex;
    padding: 14px 24px !important;
    width: 100%;
  }
  
  .core-values-footer .btn-mobile svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* ========== NEWS PAGE ========== */
.news-page {
  background: #F4F5F5;
}

.news-outer {
  max-width: 1512px;
  margin: 0 auto;
  padding: 60px 80px 80px;
}

.news-title {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #1A1A1A;
  text-align: center;
  margin: 0 0 32px;
}

.news-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 20px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6B6B6B;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}

.filter-tab:hover {
  color: #1A1A1A;
}

.filter-tab.active {
  color: #1A1A1A;
  border-bottom: 2px solid #1A1A1A;
  border-radius: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
}

.news-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
}

.news-image {
  display: block;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-meta {
  display: flex;
  gap: 16px;
  padding: 16px 20px 8px;
}

.news-category {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 12px;
  color: #6B6B6B;
  text-decoration: underline;
}

.news-date {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 12px;
  color: #B3B3B3;
}

.news-card h3 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
  padding: 0 20px 8px;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.news-card h3 a:hover {
  color: #E6863D;
}

.news-card p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #6B6B6B;
  margin: 0;
  padding: 0 20px 20px;
}

.no-news {
  grid-column: 1 / -1;
  text-align: center;
  color: #6B6B6B;
}

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

@media (max-width: 768px) {
  .news-outer {
    padding: 40px 20px 60px;
  }
  
  .news-title {
    font-size: 32px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== NEWS SINGLE ========== */
.news-single {
  background: #ffffff;
}

.news-single-outer {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.news-single-header {
  text-align: center;
  margin-bottom: 40px;
}

.news-single-header h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 16px;
}

.news-single-excerpt {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  color: #6B6B6B;
  margin: 0 0 16px;
}

.news-single-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.news-single-meta .news-category {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  text-decoration: underline;
}

.news-single-meta .news-date {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  color: #B3B3B3;
}

.news-single-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.news-single-image img {
  width: 100%;
  height: auto;
}

.news-single-content {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #1A1A1A;
}

.news-single-content h2,
.news-single-content h3,
.news-single-content h4 {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 600;
  color: #1A1A1A;
  margin: 32px 0 16px;
}

.news-single-content h2 { font-size: 28px; }
.news-single-content h3 { font-size: 22px; }
.news-single-content h4 { font-size: 18px; }

.news-single-content p {
  margin: 0 0 16px;
}

.news-single-content ul,
.news-single-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.news-single-content blockquote {
  background: #FFF8F3;
  border-left: 4px solid #E6863D;
  padding: 24px;
  margin: 32px 0;
  border-radius: 8px;
}

.news-single-content blockquote p {
  font-size: 18px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 0;
}

/* ========== LEARN MORE ========== */
.learn-more {
  background: #F4F5F5;
}

.learn-more-outer {
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 80px 80px;
}

.learn-more h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1A1A1A;
  text-align: center;
  margin: 0 0 40px;
}

.learn-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Mobile */
@media (max-width: 768px) {
  .news-single-header h1 {
    font-size: 28px;
  }
  
  .news-single-excerpt {
    font-size: 16px;
  }
  
  .learn-more-outer {
    padding: 0 20px 60px;
  }
  
  .learn-more-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== DISTRIBUTOR PAGE ========== */

/* Hero */
.distributor-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('assets/images/stock/distributor-hero.png') center/cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.distributor-hero-outer {
  max-width: 1512px;
  padding: 80px;
  text-align: center;
}

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

.distributor-hero h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.distributor-hero p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}

/* Why Distributor */
.why-distributor {
  background: #FFFFFF;
}

.why-distributor-outer {
  max-width: 1512px;
  margin: 0 auto;
  padding: 80px;
  text-align: center;
}

.why-distributor h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 48px;
}

.why-distributor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-item h4 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 8px;
}

.why-item p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  margin: 0;
}

/* Distributor Benefits */
.distributor-benefits {
  background: #ffffff;
}

.distributor-benefits-outer {
  max-width: 1512px;
  margin: 0 auto;
  padding: 80px;
}

.distributor-benefits h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1A1A1A;
  text-align: center;
  margin: 0 0 48px;
}

.distributor-benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.benefit-item {
  background: #F4F5F5;
  padding: 16px 24px;
  border-radius: 8px;
  flex: 1;
  display: flex;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.benefit-item p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 0;
}

.benefits-image {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Distributor Form */
.distributor-form {
  background: #F4F5F5;
}

.distributor-form-outer {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.distributor-form h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1A1A1A;
  text-align: center;
  margin: 0 0 32px;
}

.dist-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 15px;
  background: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E6863D;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-full svg {
  width: 16px;
  height: 16px;
}

.distributor-hero .btn-primary svg,
.distributor-values-header .btn-primary svg,
.btn-full svg {
  width: 16px;
  height: 16px;
}

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

@media (max-width: 768px) {
  .distributor-hero-outer,
  .why-distributor-outer,
  .distributor-values-outer,
  .distributor-benefits-outer {
    padding: 60px 20px;
  }

  .distributor-hero h1 {
    font-size: 28px;
  }

  .why-distributor-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .distributor-values-header {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .distributor-values-grid {
    grid-template-columns: 1fr;
  }

  .distributor-benefits-layout {
    grid-template-columns: 1fr;
  }

  .benefits-list {
    order: 1 !important;
  }

  .benefits-image {
    order: 2 !important;
  }
}

/* ========== CONTACT PAGE ========== */

/* Hero */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('assets/images/stock/contact-hero.png') center/cover;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-outer {
  max-width: 1512px;
  padding: 80px;
  text-align: center;
  width: 100%;
}

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

.contact-hero h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.contact-hero p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}

/* Contact Form Section */
.contact-form-section {
  background: #FFFFFF;
}

.contact-form-outer {
  max-width: 1512px;
  margin: 0 auto;
  padding: 80px;
}

.contact-form-outer h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1A1A1A;
  text-align: center;
  margin: 0 0 48px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper {
  max-width: 450px;
}

.contact-emails {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.contact-email-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-email-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-email-item span {
  display: block;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 13px;
  color: #6B6B6B;
}

.contact-email-item a {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  color: #E6863D;
  text-decoration: underline;
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E5E5E5;
}

.contact-divider span {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 13px;
  color: #6B6B6B;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-image {
  border-radius: 16px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-hero-outer,
  .contact-form-outer {
    padding: 60px 20px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-emails {
    flex-direction: column;
    gap: 16px;
  }

.contact-image {
    order: 1;
  }

.contact-form-wrapper {
    order: -1;
  }
}

/* Expandable Product Details */
.product-card {
  flex-direction: column;
}

.product-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  width: 100%;
}

.product-card.expanded .product-details {
  max-height: 500px;
  border-top: 1px solid #E5E5E5;
  margin-top: 20px;
}

.product-details-inner {
  padding: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.detail-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-row.detail-full {
  grid-column: 1 / -1;
}

.detail-label {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 12px;
  color: #6B6B6B;
}

.detail-value {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
}

.product-toggle .toggle-arrow {
  transition: transform 0.3s;
}

.product-card.expanded .product-toggle .toggle-arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .product-details-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Oil Finder Result */
.oil-finder-result-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 80px 80px;
}

.result-header {
  margin-bottom: 40px;
}

.result-header h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 16px;
}

.vehicle-info {
  display: flex;
  gap: 12px;
}

.vehicle-info span {
  padding: 6px 12px;
  background: #F4F5F5;
  border-radius: 6px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
}

.result-category-group {
  margin-bottom: 40px;
}

.result-category-group h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E6863D;
}

.result-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-product-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
}

.result-product-card h3 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 12px;
}

.product-specs {
  display: flex;
  gap: 24px;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-size: 12px;
  color: #6B6B6B;
}

.spec-value {
  font-size: 16px;
  font-weight: 500;
  color: #E6863D;
}

.product-comment {
  font-size: 14px;
  color: #6B6B6B;
  margin: 12px 0 0;
}

.product-actions {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .oil-finder-result-outer {
    padding: 40px 20px;
  }
  
  .result-product-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .product-actions {
    width: 100%;
  }
  
  .product-actions .btn {
    flex: 1;
    text-align: center;
  }
}