:root {
  --heading-color: #1c1c1e;
}

h1,
h2 {
  color: var(--heading-color);
}

html:not(.home):not(.not-found) body {
  padding-top: 80px;
}

.btn.btn-primary {
  border-radius: 10px;
  background: #0066ff;
  backdrop-filter: blur(2px);
  color: #fff;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  border-color: #0066ff;
}

.btn.btn-primary:hover {
  background: #0066ff;
  opacity: 0.8;
}

.hero-section {
  background: url("../img/hero-bg.jpeg") no-repeat center;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  color: white;
  position: relative;
  padding-bottom: 6rem;
}

.hero-section .container {
  padding: 0 1rem;
}

.hero-content {
  padding-top: 5rem;
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-title {
  color: #fff;
}

.hero-subtitle {
  font-weight: 600;
}

.search-bar {
  gap: 32px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: column;
  margin-bottom: 32px;
}

.search-bar label {
  color: var(--White, #fdfdfd);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 0.75rem;
}

.search-bar .input-group-text {
  position: absolute;
  z-index: 6;
  background: none;
  border: none;
  height: 100%;
  padding-left: 1rem;
  color: #6c757d;
  pointer-events: none;
}

.search-bar .form-control {
  padding: 12px 24px 12px 42px;
  border-radius: 0.625rem !important;
}

.search-bar .btn {
  padding: 12px 24px;
  border-radius: 10px;
  background: #0066ff;
  backdrop-filter: blur(2px);
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.search-bar .input-group {
  position: relative;
}

.search-bar .input-group:focus-within .input-group-text {
  border-color: #86b7fe;
}

.car-card {
  transition: transform 0.3s;
  cursor: pointer;
}

.car-card:hover {
  transform: translateY(-5px);
}

.car-card img {
  border-radius: 8px;
}

.monthly-price {
  border-radius: 4px;
  background: #efedeb;
  color: #0a58ca;
  font-family: "AR One Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  padding: 6px;
  display: inline-block;
}

.monthly-price span:first-child {
  color: #0a58ca;
}

.monthly-price span:last-child {
  font-size: 16px;
}

.monthly-price-dual {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.monthly-price-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.monthly-price-label {
  color: #666;
  font-size: 0.85em;
  font-weight: 400;
}

.monthly-price-divider {
  color: #ccc;
}

.monthly-price-suffix {
  font-size: 0.85em;
  color: #666;
}

.car-badges {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.car-badges .badge {
  display: flex;
  padding: 6px 10px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #000;
  font-family: "AR One Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  border-radius: 0px 0px 4px 4px;
}

.car-badges .badge-sale {
  background: #e4f222;
}

.car-badges .badge-in-warehouse {
  background: #606053;
  color: #fff;
}

.car-badges .badge-new {
  background: #00c667;
  color: #fff;
}

.car-badges .badge-used {
  background: #1183c5;
  color: #fff;
}

.car-badges .badge-electric {
  background: #0f766e;
  color: #fff;
}

.car-badges .badge-model-type {
  background: #334155;
  color: #fff;
}

.car-badges .badge-listing {
  color: #fff;
}

.car-badges .badge-listing-featured-offer {
  background: #f97316;
}

.car-badges .badge-listing-special-price {
  background: #dc2626;
}

.car-badges .badge-listing-top-offer {
  background: #2563eb;
}

.car-image {
  height: 250px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.car-image img {
  width: 100%;
  object-fit: contain;
  max-height: 100%;
}

.car-title {
  display: flex;
  align-items: start;
  color: #000;
  font-family: "AR One Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding: 0.75rem 0;
}

.car-title img {
  width: 20px;
  height: 20px;
  margin-right: 0.25rem;
}

.car-price {
  color: #6c757d;
  font-family: "AR One Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.favorite-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  background: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.favorite-btn:hover {
  background: #fff5f5;
  transform: scale(1.1);
}

.favorite-btn.active {
  background: #ff0000;
  color: white;
}

.favorite-btn.active:hover {
  background: #e60000;
}

.car-offer-item {
  position: relative;
}

.car-offer-item .share-btn {
  top: 20px;
  right: 16px;
}

.share-btn {
  position: absolute;
  right: 10px;
  top: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
  background: #e6f3ff;
  transform: scale(1.1);
}

.share-btn.copied {
  background: #28a745;
  color: white;
}

.car-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.car-option {
  color: #6c757d;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.car-option:hover {
  color: #0d6efd;
}

.navbar {
  transition: background-color 0.3s ease;
  background-color: transparent !important;
}

.navbar-scrolled {
  background-color: #212529 !important;
}

/* Keep dark background on non-home pages */
html:not(.home) .navbar {
  background-color: #fff !important;
}

/* Custom hamburger menu with 3 stripes */
.navbar-toggler {
  border: none;
  padding: 9px;
  position: relative;
  height: 40px;
  width: 40px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Remove default Bootstrap background image */
.navbar-toggler .navbar-toggler-icon {
  background-image: none !important;
  display: block;
  width: 22px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: background-color 0.2s ease;
}

/* Create the top and bottom bars using pseudo-elements */
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: "";
  display: block;
  width: 22px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: transform 0.2s ease;
}

/* Position the bars */
.navbar-toggler .navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler .navbar-toggler-icon::after {
  bottom: -7px;
}

/* Dark color for non-homepage */
html:not(.home) .navbar-toggler .navbar-toggler-icon,
html:not(.home) .navbar-toggler .navbar-toggler-icon::before,
html:not(.home) .navbar-toggler .navbar-toggler-icon::after {
  background-color: #212529;
}

.palyginimas-name {
  text-decoration: none;
  color: #0d6efd;
  font-weight: 600;
}

.palyginimas-brand-name {
  color: #ff8c25;
}

.cookie-consent {
  position: fixed;
  display: none;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(33, 37, 41, 0.95);
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  font-size: 0.9rem;
}

.cookie-consent .container {
  max-width: 800px;
}

.cookie-consent h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: "AR One Sans", sans-serif;
}

.cookie-consent p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cookieText {
  margin-bottom: 1.5rem;
}

.cookieText label {
  display: block;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.cookieText input[type="checkbox"] {
  margin-right: 0.5rem;
}

.cookieButtons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.cookieButtons .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.cookieButtons .btn-light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cookieButtons .btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

footer {
  padding: 2.5rem 0 1.25rem 0;
  background: #000;
}

.footer-logo img {
  max-width: 100%;
}

.footer-menu-title {
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.footer-menu-content {
  color: #fefefe;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.footer-menu-content a {
  color: #fff;
  text-decoration: none;
}

.footer-menu {
  padding-bottom: 2.5rem;
}

.footer-copyright {
  border-top: 1px solid #646464;
  padding-top: 0.75rem;
  color: #fff;
  font-size: 14px;
}

.footer-copyright a {
  color: #fff;
  text-decoration: none;
}

a.car-card {
  text-decoration: none;
}

.car-header {
  margin-bottom: 5rem;
}

.car-header-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.car-header .brand-logo img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.car-header .brand-name,
.car-header .car-name {
  display: inline;
  line-height: 1;
}

.car-header .car-name h1,
.car-header .brand-name h1 {
  display: inline;
  color: #010101;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.car-header .car-name {
}

.car-preview-image {
  width: 100%;
  position: relative;
}

.car-preview-image img {
  max-height: 338px;

  max-width: 620px;
  width: 100%;
  object-fit: contain;
}

.car-preview-sticker {
  position: absolute;
  top: -12px;
  right: 95px;
  background-image: url("../img/car-preview-sticker.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  height: 108px;
}

.car-preview-sticker div:nth-child(1) {
  margin-left: 20px;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  padding-top: 1rem;
}

.car-preview-image div:nth-child(2) {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-left: 20px;
}

.car-preview-image div:nth-child(3) {
  color: #fff;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-left: 20px;
}

.car-calculator-form {
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 22px;
}

.car-calculator-form > .row {
  margin-bottom: 0.5rem;
}

.car-calculator-form label {
  font-size: 0.875rem;
  padding: 0 12px;
  margin-bottom: 0.5rem;
}

.car-calculator-form .row > div:not(:last-child) {
  border-right: 1px solid #e6e6e6;
}

.car-calculator-form .form-control {
  height: 40px;
}

/* New styles for input icons */
.car-calculator-form .position-relative {
  position: relative;
}

.car-calculator-form .input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.car-calculator-form .input-icon img {
  width: 16px;
  height: 16px;
}

.car-calculator-form .calculation-type {
  margin-bottom: 0;
}

.car-calculator-form-car-type {
  display: inline-flex;
  border-radius: 35px;
  opacity: 0.8;
  background: #f0faff;
  padding: 8px;
  margin-bottom: 2rem;
}

.car-calculator-form-car-type label {
  display: inline-flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 36px;
  cursor: pointer;
}

.car-calculator-form-car-type label input {
  display: none;
}

.car-calculator-form-car-type label:has(input:checked) {
  background: #fff;
}

.car-request-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.car-offer-item-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 3rem 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px dashed #d0d7e2;
  border-radius: 10px;
  background: #f7f9fc;
}

.car-offer-item-empty-icon {
  font-size: 3rem;
  line-height: 1;
  color: #9aa7bd;
}

.car-offer-item-empty span {
  color: #5a6473;
  font-family: Inter;
  font-size: 16px;
  line-height: 1.5;
  max-width: 32rem;
}

.car-offer-item-empty .car-request-cta {
  margin-bottom: 0;
  justify-content: center;
}

.home-calculator-container {
  max-width: 900px;
}

.btn-cta,
.btn-cta:hover,
.btn-cta:active,
.btn-cta:focus,
.btn-cta:focus-visible,
.btn-cta:target,
.btn-cta:first-child:active {
  display: flex;
  padding: 12px 50px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  background: #0066ff;
  border-color: #0066ff;
  color: #fff;
  font-family: "AR One Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
}

.car-page {
  margin-bottom: 3.5rem;
}

.car-offers h2 {
  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 1.5rem;
}

.car-offers h2.side-border {
  border-bottom: 2px solid #ff8c25;
  padding-bottom: 0.5rem;
}

.car-offer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.car-offer-item {
  border-radius: 10px;
  background: #3860be;
}

.car-offer-item label {
  cursor: pointer;
}

.car-offer-item > label {
  padding: 0 16px;
}

.car-offer-item-checkbox {
  display: flex;
  align-items: center;
  padding: 20px 0;
  line-height: 1;
}

.car-offer-item-checkbox span {
  color: #fff;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.car-offer-item-checkbox input {
  display: none;
}

.car-offer-item-checkbox-check {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #fff;
  margin-right: 16px;
}

.car-offer-item-checkbox-check svg {
  width: 16px;
  height: 16px;
  color: #000;
  display: none;
}

.car-offer-item-checkbox input:checked + .car-offer-item-checkbox-check svg {
  display: block;
}

.car-offer-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 120px;
  max-height: 120px;
  border-radius: 10px;
}

.car-offer-item-label span {
  display: flex;
  padding: 3px 10px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border-radius: 0px 0px 4px 4px;
  background: #e4f222;
  color: #000;
  font-family: "AR One Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  display: inline-block;
}

.car-offer-item-header {
  display: flex;
  gap: 30px;
}

.car-offer-item-header-spec {
  color: #fff;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}

.car-offer-item-price-container {
  display: flex;
  width: 160px;
  padding: 6px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 12px;
  background: #fff;
  flex-direction: column;
}

.car-offer-item-price-value {
  color: #0066ff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.car-offer-item-price-value2 {
  font-size: 14px;
}

.car-offer-item-price-carprice {
  font-size: 14px;
}

.car-offer-item-monthly-payment {
  font-size: 16px;
}

.car-offer-item-price-label {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.car-offer-item-price-monthly-divider {
  width: 80%;
  height: 1px;
  background: #e0e0e0;
  margin: 4px 0;
}

.car-offer-item-price-from {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.car-offer-item-price-footnote {
  color: #757575;
  font-size: 11px;
  text-align: center;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.car-offer-item-price-footnote .scroll-to-calculator {
  color: inherit;
  text-decoration: none;
  margin-right: 4px;
}

.car-offer-item-price-footnote .scroll-to-calculator:hover {
  color: #0066ff;
}

.car-offer-item-description {
  margin-bottom: 10px;
}

.car-offer-item-description-text {
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.car-offer-item-top {
  padding: 16px;
}

.car-offer-item-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.car-offer-item-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 10px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s, background 0.2s;
}

.car-offer-item-action i {
  font-size: 16px;
}

.car-offer-item-action-request {
  background: #0066ff;
  border: 1px solid #0066ff;
  color: #fff;
}

.car-offer-item-action-request:hover {
  opacity: 0.85;
  color: #fff;
}

.car-offer-item-action-call {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.car-offer-item-action-call:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.car-offer-item-bottom {
  border-top: 1px solid #3b9cfe;
  display: flex;
}

.car-offer-item-bottom a {
  color: #fff;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.car-offer-item-bottom-arrow {
  margin-left: 7px;
}

.car-offer-item-bottom-arrow img {
  width: 24px;
  height: 24px;
}

.car-offer-item-bottom-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  font-size: 13px;
  text-align: center;
}

.car-offer-item-bottom-link i {
  font-size: 16px;
}

.car-offer-item-bottom-link:not(:last-child) {
  border-right: 1px solid #3b9cfe;
}

.car-offer-item-bottom-link:hover {
  text-decoration: underline;
}

.car-offer-item-company {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  gap: 10px;
}

.car-offer-item-company-logo {
  height: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  padding: 2px 6px;
}

.car-offer-item-company-icon {
  font-size: 18px;
  color: #fff;
  opacity: 0.8;
}

.car-offer-item-company-name {
  color: #fff;
  font-family: Inter;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.car-offer-item-company-name strong {
  font-weight: 600;
}

.car-about-calculator-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  position: relative;
  margin-bottom: 0;
}

.car-about-calculator-input input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 0px;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.km-suffix {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.car-about-calculator-slider {
  z-index: 2;
}

.car-about-calculator-slider-container {
  position: relative;
  height: 10px;
  margin-bottom: 0.75rem;
}

.slider {
  position: absolute;
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 0px;
  background: #d9d9d9;
  outline: none;
  margin: 0;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0066ff;
  cursor: pointer;
  margin-top: -7px;
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0066ff;
  cursor: pointer;
  border: none;
}

.slider::-moz-range-track {
  height: 10px;
  background: #d9d9d9;
  border-radius: 5px;
}

.slider::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 5px;
}

.request-form {
  background: var(
    --Gradient,
    linear-gradient(105deg, #000101 27.14%, #023048 86.42%)
  );
}

.request-form .container {
  padding: 1.5rem 1rem;
}

.request-form .container > .row {
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.request-form-text {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 1.25rem;
}

.request-form-text-counter {
  color: #fff;
  font-family: "AR One Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 0.75rem;
}

.request-form-offers {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.request-form-offer {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  width: 85px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.request-form-offer-image img {
  width: 65px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.request-form-offer input {
  display: none;
}

.request-form-offer-check {
  position: absolute;
  top: -10px;
  right: -3px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 1);
  border: 2px solid #fff;
}

.request-form-offer-check svg {
  width: 16px;
  height: 16px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.request-form-offer input:checked + .request-form-offer-check {
  background: #32abe2;
  border-color: #32abe2;
}

.request-form-offer input:checked + .request-form-offer-check svg {
  opacity: 1;
}

.service-option-container {
  margin-bottom: 1rem;
}

.service-content {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.request-form h3 {
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 1.25rem;
}

.request-form-fields .form-control {
  padding: 8px 14px;
  border-radius: 8px;
  background: #fffdfd;
  color: #5a5a5a;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.request-form-fields .form-control::placeholder {
  color: #5a5a5a;
}

.request-form-fields textarea.form-control {
  height: 80px;
}

.request-form-fields .form-group {
  margin-bottom: 1rem;
}

.request-form .form-check-label {
  color: #fff;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.request-form .form-check-label a {
  color: #fff;
  text-decoration: underline;
}

.car-about .container {
  padding: 1.5rem 1rem;
}

.car-about .container h2 {
  color: #2f2f2f;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 2rem;
}

.car-about-image {
  width: 100%;
  max-width: 100%;
}

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

.car-about-brand {
  color: #161616;
  font-family: "AR One Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.car-about-name {
  color: #161616;
  font-family: "AR One Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.car-about-header {
  margin-bottom: 2rem;
}

.car-about-calculator-label {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 0.75rem;
}

.car-about-calculator-value {
  margin-bottom: 1.5rem;
}

.car-about-calculator-value span:first-child {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.car-about-calculator-value span:last-child {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.car-about-description {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.car-filter h2 {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 0.75rem;
}

.car-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.car-filter-item a {
  width: 100%;
  padding: 6px 12px;
  color: #4e4e4e;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  cursor: pointer;
  display: block;
  border-bottom: 1px solid #e4e4e4;
  text-decoration: none;
}

.car-filter-item a.active {
  border-bottom: 2px solid #ff8c25;
}

.navbar .offcanvas {
  overflow-y: auto;
  max-height: 100vh;
}

.offcanvas-top-filters {
  padding: 0 0 1rem 0;
  background: #1c1c1e;
  box-shadow: 0px -4px 60px 0px rgba(41, 57, 101, 0.15);
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 3.75rem;
}

.offcanvas-filter {
  width: 100%;
  padding: 16px 0 0 16px;
}

.offcanvas-menu {
  width: 100%;
  max-width: 100%;
  border-radius: 0px 0px 0px 20px;
  border-left: 1px solid #0066ff;
  border-bottom: 1px solid #0066ff;
  color: #f6f6f6;
  padding: 0.5rem 1rem;
}

.offcanvas-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .offcanvas-menu ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.offcanvas-menu ul li {
  color: #f6f6f6;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 0.5rem;
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.offcanvas-menu ul li a {
  text-decoration: none;
  color: #f6f6f6;
  white-space: normal;
  display: inline-block;
  width: 100%;
}

.offcanvas-menu ul li a:hover {
  color: #ff8c25;
}

/* For mobile screens */
@media (max-width: 767px) {
  .offcanvas-menu ul li {
    width: 100px;
    max-width: fit-content;
  }
}

.offcanvas .nav-link.active {
  color: #ff8c25;
}

.offcanvas .btn-close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 1050;
  padding: 1rem;
  opacity: 1;
  filter: invert(1) grayscale(100%) brightness(200%);
}

.offcanvas h2,
.offcanvas h3,
.offcanvas h4 {
  color: #fff;
  font-family: "AR One Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 1rem;
}

.offcanvas h2 {
  font-size: 36px;
}

.offcanvas h3 {
  font-size: 24px;
}

.offcanvas h4 {
  font-size: calc(1.275rem + 0.3vw);
}

.offcanvas-filter-content {
  margin-bottom: 2rem;
}

/* Offcanvas Tabs Styling */
.offcanvas-filter-content .nav-tabs {
  border-bottom: 1px solid #828282;
  margin-bottom: 2rem;
}

.offcanvas-filter-content .nav-tabs .nav-link {
  color: #fff;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  border: none;
  padding-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  background: transparent;
  position: relative;
}

.offcanvas-filter-content .nav-tabs .nav-link:hover {
  color: #fff;
  border: none;
  isolation: isolate;
}

.offcanvas-filter-content .nav-tabs .nav-link.active {
  color: #fff;
  background: transparent;
  border: none;
}

.offcanvas-filter-content .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0066ff;
}

.offcanvas-filter-items {
  column-count: 5;
  column-gap: 2rem;
  column-fill: balance;
}

.offcanvas-filter-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 1.375rem;
  break-inside: avoid;
}

.offcanvas-filter-item label {
  cursor: pointer;
  color: #fff;
  font-family: "AR One Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offcanvas-filter-item input {
  display: none;
}

.offcanvas-filter-item-checkbox-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #fff;
  background-color: transparent;
}

.offcanvas-filter-item-checkbox-check svg {
  width: 8px;
  height: 8px;
  color: #fff;
  display: none;
}

.offcanvas-filter-item-checkbox
  input:checked
  + .offcanvas-filter-item-checkbox-check {
  background-color: #0066ff;
  border-color: #0066ff;
}

.offcanvas-filter-item-checkbox
  input:checked
  + .offcanvas-filter-item-checkbox-check
  svg {
  display: block;
}

.offcanvas-filter-content .tab-content {
  padding: 1rem 0;
}

.offcanvas-filter-content .tab-pane h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.offcanvas-filter-content .tab-pane ul li {
  margin-bottom: 0.75rem;
}

.offcanvas-filter-content .tab-pane ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.offcanvas-filter-content .tab-pane ul li a:hover {
  color: #00b2ff;
}

.offcanvas-filter-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-right: 1rem;
}

.offcanvas-filter-actions-count {
  color: #fff;
  font-family: "AR One Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.offcanvas-filter-actions-count span:last-child {
  color: #fff;
  font-family: "AR One Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.offcanvas .btn.btn-primary {
  border-radius: 15px;
  border: 1px solid #0066ff;
  padding: 12px 45px;
  background-color: transparent;
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.offcanvas-filter-selected {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.offcanvas-filter-selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.offcanvas-filter-selected-items > div {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 38px;
  border: 1px solid #0066ff;
  background: #0066ff;
  color: #fff;
  padding: 4px 8px;
  font-family: "AR One Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.offcanvas-filter-selected-items > div span {
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.offcanvas-filter-selected-items > div span:hover {
  opacity: 1;
}

.offcanvas-filter-selected-clear {
  display: none;
  margin-bottom: 1rem;
}

.offcanvas-filter-selected-clear a {
  color: #fff;
  font-family: "AR One Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
  margin-bottom: 1rem;
}

.offcanvas-filter-selected-clear a:not([href]):not([class]),
.offcanvas-filter-selected-clear a:not([href]):not([class]):hover {
  color: #fff;
}

.offcanvas-calculator {
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.offcanvas .search-bar {
  margin-bottom: 1.5rem;
}

.offcanvas .search-bar label {
  margin-bottom: 0;
  color: #000;
  margin-bottom: 0.5rem;
}

.offcanvas .search-bar label img {
  filter: brightness(0);
}

.offcanvas-calculator-result {
  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.offcanvas-favorites {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem;
  margin-bottom: 5rem;
}

.offcanvas-favorites-slides-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.offcanvas-favorites-title {
  margin-bottom: 3.25rem;
}

.offcanvas-favorites-title h2 {
  color: #000;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.offcanvas-favorites-slides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
  width: 100%;
  padding-bottom: 10px;
}

.scroller-down-to-cars {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  text-align: center;
}

.scroller-down-to-cars a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.scroller-down-to-cars a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.scroller-down-to-cars i {
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-5px);
  }

  60% {
    transform: translateY(-3px);
  }
}

.article-container {
  max-width: 50rem;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.article-container .text-block figure {
  float: left;
  margin-right: 1rem;
}

.related-pages {
  background: #f8f9fa;
}

.related-pages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.related-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.25rem;
  border: 1px solid #d9e1ea;
  border-radius: 8px;
  background: #fff;
  color: #2f2f2f;
  font-family: "AR One Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.related-page-button:hover {
  border-color: #127bf6;
  color: #127bf6;
  box-shadow: 0 8px 24px rgba(18, 123, 246, 0.12);
  text-decoration: none;
}

.offcanvas-favorites-slide {
  cursor: pointer;
  transition: all 0.2s;
  padding: 0.5rem;
  border-radius: 8px;
  width: 100%;
  max-width: none;
}

.offcanvas-favorites-slide.active {
  border-radius: 7px;
  border: 1px solid #dedede;
  background: #fff;
  box-shadow: 0px 0px 8.9px 0px rgba(165, 165, 165, 0.25);
}

.offcanvas-favorites-slide:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.offcanvas-favorites-slide-image {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.offcanvas-favorites-slide-image img {
  max-width: 100%;
  height: 70px;
  object-fit: contain;
}

.offcanvas-favorites-slide-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  width: 100%;
  overflow: hidden;
  flex-direction: column;
}

.offcanvas-favorites-slide-price {
  color: #127bf6;
  font-family: "AR One Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  margin-top: 0.5rem;
}

.offcanvas-favorites-slide-title img {
  height: 20px;
  width: auto;
}

.offcanvas-favorites-slide-title span {
  color: #000;
  text-align: center;
  font-family: "AR One Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.offcanvas-favorites-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.offcanvas-favorites-controls-prev,
.offcanvas-favorites-controls-next {
  cursor: pointer;
}

.offcanvas-favorites-controls-prev svg,
.offcanvas-favorites-controls-next svg {
  width: 52px;
  height: 52px;
}

.offcanvas-favorites-controls-pages {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offcanvas-favorites-controls-pages-item {
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #212121;
  font-family: "AR One Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.offcanvas-favorites-controls-pages-item.active {
  color: #00b2ff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  border-radius: 8px;
  box-shadow: 0px 0px 8.9px 0px rgba(165, 165, 165, 0.25);
}

.offcanvas-favorites-preview {
  max-width: 100%;
  margin-top: 2rem;
}

.offcanvas-favorites-preview .car-card {
  border-radius: 0px 0px 20px 20px;
  border-right: 1px solid rgba(2, 48, 72, 0.1);
  border-bottom: 1px solid rgba(2, 48, 72, 0.1);
  border-left: 1px solid rgba(2, 48, 72, 0.1);
  background: #fff;
  box-shadow: 0px 0px 8.9px 0px rgba(165, 165, 165, 0.25);
  padding: 1rem;
  display: block;
}

.calculation-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calculator-mode {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.calculator-mode input {
  display: none;
}

.calculator-mode-item {
  border-radius: 80px;
  background: #fff;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  cursor: pointer;
}

.calculator-mode-item span {
  color: #000;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: block;
}

.calculator-mode-item i {
  background: #b0b0b0;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.calculator-mode-item:has(input:checked) i {
  background: #0066ff;
}

.offcanvas .calculator-mode-item span {
  color: #000;
}

.calculation-type input {
  display: none;
}

.calculation-type-item {
  border-radius: 80px;
  background: #fff;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  padding: 8px;
}

.calculation-type-item span {
  color: #000;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: block;
}

.calculation-type label:first-child span {
  padding-left: 16px;
  text-align: right;
}

.calculation-type label:last-child span {
  padding-right: 16px;
}

.calculation-type-item i {
  background: #b0b0b0;
  border-radius: 100%;
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
}

.calculation-type-item:has(input:checked) i {
  background: #0066ff;
}

/* Nauji / Naudoti listing toggle — segmented pill control matching the calculator pills. */
.listing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.listing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: #eef1f6;
  border-radius: 80px;
  max-width: 100%;
}

.listing-toggle-item {
  display: block;
  padding: 10px 28px;
  border-radius: 80px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #1c1c1e;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.listing-toggle-item:hover {
  color: #0066ff;
}

.listing-toggle-item.is-active {
  background: #0066ff;
  color: #fff;
}

/* Modern Article Styles */
.articles-page {
  background: #f8f9fa;
  min-height: 80vh;
}

.articles-header {
  margin-bottom: 3rem;
}

.articles-title {
  font-family: "AR One Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.articles-description {
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.articles-grid > div > div {
  display: flex;
  flex-direction: column;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.article-card-image {
  width: 100%;
  position: relative;
}

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

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

.article-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card-title {
  font-family: "AR One Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-excerpt {
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid #f0f0f0;
}

.read-more-text {
  font-family: "AR One Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff8c25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-card-action i {
  color: #ff8c25;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.article-card:hover .article-card-action i {
  transform: translateX(4px);
}

/* Single Article Page Styles */
.article-page {
  background: #f8f9fa;
  min-height: 80vh;
}

.article-card-single {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.article-header-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

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

/* Article CTA Button */
.article-cta {
  padding: 1.5rem 2.5rem 0 2.5rem;
  text-align: center;
}

.article-cta-button {
  display: inline-block;
  background: #0066ff;
  color: #fff;
  font-family: "AR One Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.article-cta-button:hover {
  background: #0066ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
  color: #fff;
}

/* Mobile fixed CTA - hidden on desktop */
.article-cta-mobile {
  display: none;
}

@media (max-width: 767px) {
  /* Hide desktop CTA on mobile */
  .article-cta {
    display: none;
  }

  /* Show fixed mobile CTA */
  .article-cta-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  }

  .article-cta-button-mobile {
    display: block;
    width: 100%;
    background: #0066ff;
    color: #fff;
    font-family: "AR One Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
  }

  .article-cta-button-mobile:hover {
    background: #0066ff;
    color: #fff;
  }

  /* Add padding to article page to prevent content overlap with fixed CTA */
  .article-page {
    padding-bottom: 80px;
  }
}

.article-content {
  padding: 2.5rem;
}

.article-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1.5rem;
}

.article-title {
  font-family: "AR One Sans", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0;
  line-height: 1.2;
}

.article-body {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  color: #2f2f2f;
  line-height: 1.7;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  font-family: "AR One Sans", sans-serif;
  color: #2f2f2f;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.article-body h2 {
  font-size: 1.75rem;
  border-bottom: 2px solid #ff8c25;
  padding-bottom: 0.5rem;
}

.article-body h3 {
  font-size: 1.5rem;
  color: #ff8c25;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body a {
  color: #ff8c25;
  text-decoration: none;
  font-weight: 500;
}

.article-body a:hover {
  color: #00b2ff;
  text-decoration: underline;
}

.article-body figure {
  margin: 2rem 0;
  text-align: center;
}

.article-body figure img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-body blockquote {
  border-left: 4px solid #ff8c25;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #6c757d;
  background: rgba(255, 140, 37, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
}

.article-car-profile-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  background: #f8f9fa;
  padding: 1rem;
}

.article-car-profile-image {
  flex: 0 0 150px;
}

.article-car-profile-image img {
  display: block;
  width: 150px;
  height: 92px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.article-car-profile-content {
  flex: 1 1 auto;
  min-width: 0;
}

.article-car-profile-label {
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.article-car-profile-title {
  color: #2f2f2f;
  font-family: "AR One Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.article-car-profile-price {
  color: #ff8c25;
  font-weight: 700;
  margin-top: 0.35rem;
}

.article-car-profile-action {
  flex: 0 0 auto;
}

/* Mobile Styles for Articles */
@media (max-width: 767px) {
  .articles-page {
    padding: 2rem 0;
  }

  .articles-header {
    margin-bottom: 2rem;
  }

  .articles-title {
    font-size: 1.75rem;
  }

  .articles-description {
    font-size: 1rem;
  }

  .article-card-body {
    padding: 1.25rem;
    height: calc(100% - 160px);
  }

  .article-card-title {
    font-size: 1.1rem;
  }

  .article-card-excerpt {
    font-size: 0.85rem;
  }

  .read-more-text {
    font-size: 0.8rem;
  }

  .article-page {
    padding: 2rem 0;
  }

  .article-content {
    padding: 1.5rem;
  }

  .article-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .article-title {
    font-size: 1.75rem;
  }

  .article-body {
    font-size: 0.9rem;
  }

  .article-body h2 {
    font-size: 1.5rem;
  }

  .article-body h3 {
    font-size: 1.25rem;
  }

  .article-car-profile-card {
    align-items: stretch;
    flex-direction: column;
  }

  .article-car-profile-image {
    flex-basis: auto;
  }

  .article-car-profile-image img {
    height: 140px;
    width: 100%;
  }

  .article-car-profile-action .btn {
    width: 100%;
  }
}

/* Desktop Styles for Articles */
@media (min-width: 768px) {
  .articles-title {
    font-size: 3rem;
  }

  .articles-description {
    font-size: 1.25rem;
  }

  .article-card-title {
    font-size: 1.4rem;
  }

  .article-card-excerpt {
    font-size: 1rem;
  }

  .article-title {
    font-size: 2.75rem;
  }

  .article-body {
    font-size: 1.1rem;
  }

  .article-body h2 {
    font-size: 2rem;
  }

  .article-body h3 {
    font-size: 1.75rem;
  }
}

.articles-container {
  max-width: 50rem;
  margin-bottom: 4rem;
}

.pagination {
  --bs-pagination-border-color: #ff8c25;
  --bs-pagination-hover-border-color: #ff8c25;
  --bs-pagination-active-border-color: #ff8c25;
  --bs-pagination-active-bg: #ff8c25;
  --bs-pagination-active-color: #fff;
}

.hero-car-price {
  color: #5c636a;
  font-weight: 500;
  text-wrap: nowrap;
}

.hero-car-price span {
  color: #0066ff;
  font-weight: 700;
}

.disclaimer-text {
  font-size: 12px;
  color: #757575;
}

.disclaimer-text p {
  padding: 0;
  margin: 0;
}

.disclaimer-text a {
  color: #757575;
  text-decoration: underline;
}

.brand-text {
  font-size: 16px;
}

.disclaimer-text-white {
  color: #fff;
}

.disclaimer-text-white a {
  color: #fff;
}

/* Brand page styles */
.warranty-info {
  margin-top: 1rem;
}

.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "AR One Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.warranty-badge i {
  font-size: 18px;
  color: #ff8c25;
}

.warranty-text {
  color: #6c757d;
  font-weight: 500;
}

.brands-grid .brand-card,
.partners-grid .brand-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  min-height: 150px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.brands-grid .brand-card:hover,
.partners-grid .brand-card:not(.brand-card--static):hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
  border-color: #ccc;
}

.partners-grid .brand-card--static {
  cursor: default;
}

.brands-grid .brand-card-logo,
.partners-grid .brand-card-logo {
  width: 100%;
  height: 70px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-grid .brand-card-logo img,
.partners-grid .brand-card-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brands-grid .brand-card-name,
.partners-grid .brand-card-name {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.3;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767px) {
  .brands-grid .brand-card,
  .partners-grid .brand-card {
    min-height: 130px;
    padding: 0.75rem;
  }

  .brands-grid .brand-card-logo,
  .partners-grid .brand-card-logo {
    height: 55px;
    margin-bottom: 0.5rem;
  }

  .brands-grid .brand-card-name,
  .partners-grid .brand-card-name {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .brands-grid .brand-card,
  .partners-grid .brand-card {
    min-height: 120px;
    padding: 0.5rem;
  }

  .brands-grid .brand-card-logo,
  .partners-grid .brand-card-logo {
    height: 48px;
  }

  .brands-grid .brand-card-name,
  .partners-grid .brand-card-name {
    font-size: 0.8rem;
  }
}

/* Responsive column adjustments for filter items */
@media (min-width: 1200px) {
  .offcanvas-filter-items {
    column-count: 6;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .offcanvas-filter-items {
    column-count: 5;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .offcanvas-filter-items {
    column-count: 4;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .hero-car-price {
    font-size: 14px;
  }
  .hero-car-price span {
    font-size: 14px;
  }
  .offcanvas-favorites-slides {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 10px;
  }

  .car-header {
    margin-bottom: 60px;
  }

  .car-offer-item-header {
    flex-direction: column;
    gap: 16px;
  }

  .car-offer-item-price-container {
    width: 100%;
    padding: 4px;
    gap: 2px;
  }

  .car-offer-list {
    gap: 0.75rem;
  }

  .car-filter-list {
    margin-bottom: 2rem;
  }

  .car-calculator-form .row > div {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .car-calculator-form .row > div:not(:last-child) {
    border-right: none;
  }

  /* Smaller gutter for calculator form on mobile */
  .car-calculator-form .row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .car-calculator-form .row > div {
    padding-left: 5px;
    padding-right: 5px;
  }

  .car-calculator-form .input-icon {
    left: 8px;
  }

  .car-calculator-form .form-control {
    padding-left: 1.75rem !important;
    font-size: 13px;
  }

  .search-bar > div {
    width: 100%;
  }

  .hero-section {
    padding-bottom: 6rem;
  }

  .favorite-btn {
    width: 28px;
    height: 28px;
  }

  .car-image {
    height: 200px;
  }

  .btn-cta {
    padding: 10px 32px;
    font-size: 14px;
  }

  .offcanvas-favorites-slide-title span {
    font-size: 14px;
  }

  .car-preview-sticker {
    top: -10px;
    right: 45px;
    width: 80px;
    height: 88px;
    background-size: 100% 100%;
  }

  .car-preview-sticker div:nth-child(1) {
    margin-left: 16px;
    font-size: 12px;
    padding-top: 12px;
  }

  .car-preview-image div:nth-child(2) {
    font-size: 16px;
    margin-left: 16px;
  }

  .car-preview-image div:nth-child(3),
  .car-preview-image div:nth-child(4) {
    font-size: 12px;
    margin-left: 16px;
  }

  .request-form-offers {
    justify-content: center;
  }

  .navbar-brand img {
    max-width: 150px;
    max-height: max-content;
  }

  /* Additional mobile improvements */
  .offcanvas-filter-items {
    column-count: 3;
    column-gap: 1rem;
  }

  .offcanvas-filter-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 0.75rem;
    break-inside: avoid;
  }

  .offcanvas-filter-item label {
    font-size: 12px;
  }

  .offcanvas-filter-content {
    margin-bottom: 0.5rem;
  }

  .offcanvas-filter-content .nav-tabs {
    margin-bottom: 0.5rem;
  }

  .offcanvas-filter-content .nav-tabs .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }

  .offcanvas-filter-selected {
    margin-bottom: 0;
  }

  .offcanvas-filter-selected-items > div {
    font-size: 14px;
    padding: 3px 6px;
  }

  .offcanvas-filter-actions-count {
    font-size: 16px;
  }

  .offcanvas-filter-actions-count span:last-child {
    font-size: 16px;
  }

  .offcanvas .btn.btn-primary {
    padding: 10px 30px;
    font-size: 16px;
  }

  .offcanvas-favorites-title h2 {
    font-size: 24px;
  }

  .offcanvas-favorites-controls-pages-item {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .offcanvas-favorites-controls-prev svg,
  .offcanvas-favorites-controls-next svg {
    width: 40px;
    height: 40px;
  }

  .cookieButtons {
    grid-template-columns: 1fr;
  }

  .warranty-badge {
    font-size: 14px;
  }

  .warranty-badge i {
    font-size: 16px;
  }

  .footer-menu-title {
    margin-bottom: 1rem;
    font-size: 14px;
  }

  .footer-menu-content {
    font-size: 14px;
  }

  .footer-menu {
    padding-bottom: 1.5rem;
  }

  /* Improve touch targets */
  .car-filter-item a,
  .offcanvas-menu ul li a,
  .navbar-toggler,
  .cookieButtons .btn,
  .footer-copyright a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .car-offer-item-bottom a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .car-offer-item-bottom {
    flex-direction: column;
  }

  .car-offer-item-bottom-link:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #3b9cfe;
  }

  /* Improve form elements */
  .form-control,
  .btn,
  .input-group-text {
    min-height: 44px;
  }

  /* Add some breathing room */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Stack columns in small screens for better readability */
  .car-about .row .col-md-6:last-child {
    margin-top: 1.5rem;
  }
}

/* Small corrections for intermediate size screens */
@media (min-width: 768px) and (max-width: 991px) {
  .offcanvas-filter {
    padding: 20px 0 0 30px;
  }

  .offcanvas-menu {
    padding: 2rem;
  }

  .offcanvas-menu ul li {
    font-size: 16px;
  }

  .offcanvas-calculator {
    padding: 0 2rem;
  }

  .car-offer-item-description-text {
    font-size: 14px;
  }
}

/* Desktop Styles */
@media (min-width: 768px) {
  .request-form-offer-image img {
    width: 85px;
  }

  .hero-section {
    align-items: center;
    min-height: 100vh;
  }

  .hero-section .container {
    padding: 8rem 4rem 4rem 4rem;
  }

  .hero-content {
    font-size: 40px;
    margin-bottom: 4.375rem;
    padding-top: 0;
  }

  .search-bar {
    flex-direction: row;
    align-items: end;
  }

  .monthly-price {
    font-size: 28px;
    padding: 8px;
  }

  .monthly-price span:last-child {
    font-size: 20px;
  }

  .car-badges .badge {
    padding: 8px 12px;
    font-size: 16px;
  }

  .car-title {
    font-size: 24px;
    padding: 1rem 0;
  }

  .car-price {
    font-size: 20px;
  }

  .car-offers h2 {
    font-size: 36px;
    margin-bottom: 2.5rem;
  }

  .car-offer-item-price-value {
    font-size: 24px;
  }

  .car-offer-item-price-carprice {
    font-size: 16px;
  }

  .car-offer-item-price-value2 {
    font-size: 16px;
  }

  .car-offer-item-monthly-payment {
    font-size: 24px;
  }

  .car-offer-item-bottom a {
    font-size: 14px;
  }

  .request-form-text {
    font-size: 26px;
    margin-bottom: 2rem;
  }

  .request-form-text-counter {
    font-size: 20px;
    margin-bottom: 1.25rem;
  }

  .request-form-offer {
    padding: 0.75rem;
    width: 120px;
    height: 65px;
  }

  .request-form h3 {
    font-size: 20px;
    margin-bottom: 2rem;
  }

  .request-form-fields .form-control {
    padding: 10px 16px;
    font-size: 16px;
  }

  .request-form .form-check-label {
    font-size: 16px;
  }

  .car-about .container h2 {
    font-size: 36px;
    margin-bottom: 3.5rem;
  }

  .car-about-brand,
  .car-about-name {
    font-size: 28px;
  }

  .car-about-header {
    margin-bottom: 3.5rem;
  }

  .car-about-calculator-label {
    font-size: 18px;
  }

  .car-about-calculator-value span:first-child,
  .car-about-calculator-value span:last-child {
    font-size: 16px;
  }

  .car-about-description {
    font-size: 14px;
  }

  .car-filter h2 {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .car-filter-item a {
    padding: 6px 14px;
    font-size: 16px;
  }

  .scroller-down-to-cars a {
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 16px;
  }

  .scroller-down-to-cars i {
    font-size: 24px;
  }

  .offcanvas-filter {
    width: 100%;
    padding: 40px 0 0 100px;
  }

  .offcanvas-filter-actions {
    flex-direction: row;
  }

  .offcanvas-top-filters {
    padding: 0 0 80px 0;
    flex-direction: row;
    gap: 5rem;
    border-radius: 0px 0px 20px 20px;
  }

  .offcanvas-menu {
    max-width: 350px;
    padding: 3.25rem;
  }

  .offcanvas-menu ul li {
    font-size: 18px;
    margin-bottom: 0;
  }

  .offcanvas-calculator {
    margin-bottom: 3.75rem;
    padding: 0 5rem;
  }

  .offcanvas-favorites {
    flex-direction: row;
  }

  .offcanvas-favorites-slides-container {
    width: calc(100% - 320px);
  }

  .offcanvas-favorites-slides {
    grid-template-columns: repeat(auto-fill, minmax(160px, 180px));
  }

  .offcanvas-favorites-slide {
    max-width: 180px;
  }

  .offcanvas-favorites-preview {
    max-width: 300px;
    margin-top: 0;
  }

  .car-header .car-name h1,
  .car-header .brand-name h1 {
    font-size: 41.62px;
  }

  .car-calculator label {
    font-size: 1rem;
  }

  .car-offer-item-label {
    margin-bottom: 45px;
  }

  .request-form .container {
    padding: 60px 0;
  }

  .car-about .container {
    padding: 5rem 0;
  }

  .car-preview-sticker {
    width: 140px;
    height: 148px;
  }

  .car-preview-sticker div:nth-child(1) {
    margin-left: 26px;
    font-size: 20px;
    padding-top: 22px;
  }

  .car-preview-image div:nth-child(2) {
    font-size: 24px;
    margin-left: 26px;
  }

  .car-preview-image div:nth-child(3) {
    font-size: 16px;
    margin-left: 26px;
  }

  .offcanvas-favorites-slide-title {
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    font-size: 60px;
    margin-bottom: 9.375rem;
  }
  .monthly-price {
    font-size: 32px;
  }
}

#automobiliai {
  scroll-margin-top: 100px;
}

.car-calculator-results {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 2rem;
}

.car-calculator-result-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.car-calculator-result-label {
  color: #6c757d;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 0.5rem;
}

.car-calculator-result-value {
  color: #000;
  font-family: "AR One Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.car-calculator-result-value.highlight {
  color: #ff8c25;
  font-size: 28px;
}

.palyginimas-table-row:hover td {
  background: #f8f9fa;
}

.palyginimas-table,
.palyginimas-table-row,
.palyginimas-table td,
.palyginimas-table th {
  border: 0;
}

.palyginimas-table .border-left {
  border-left: 1px solid #111;
}

.palyginimas-table .border-right {
  border-right: 1px solid #111;
}

.calculator-form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.calculator-form-container .search-bar {
  margin-bottom: 1.5rem;
}

.calculator-form-container .search-bar label {
  margin-bottom: 0;
  color: #000;
  margin-bottom: 0.5rem;
}

.calculator-form-container .search-bar label img {
  filter: brightness(0);
}

/* FAQ Section Styles - Legacy (for car pages) */
.car-faq {
  padding: 3rem 0;
  background: #f8f9fa;
}

.car-faq .container h2 {
  color: #2f2f2f;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question span {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  flex: 1;
}

.faq-question i {
  color: #6c757d;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem 1.25rem;
  color: #6c757d;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* Modern FAQ Page Styles */
.faq-page-modern {
  padding: 4rem 0;
  background: #f8f9fa;
  min-height: 80vh;
}

.faq-hero-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.faq-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ff8c25;
}

.faq-hero-icon {
  width: 80px;
  height: 80px;
  background: #ff8c25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.faq-hero-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.faq-hero-title {
  font-family: "AR One Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-hero-subtitle {
  font-family: Inter, sans-serif;
  font-size: 1.25rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.faq-modern-list {
  margin-bottom: 3rem;
}

.faq-modern-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-modern-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.faq-modern-question {
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-modern-question:hover {
  background: rgba(255, 140, 37, 0.02);
}

.faq-question-content {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  gap: 1.5rem;
}

.faq-question-number {
  width: 40px;
  height: 40px;
  background: #ff8c25;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "AR One Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.faq-question-text {
  flex: 1;
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f2f2f;
  line-height: 1.4;
}

.faq-question-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 140, 37, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-question-icon i {
  font-size: 16px;
  color: #ff8c25;
  transition: all 0.3s ease;
}

.faq-modern-question[aria-expanded="true"] .faq-question-icon {
  background: #ff8c25;
  transform: rotate(45deg);
}

.faq-modern-question[aria-expanded="true"] .faq-question-icon i {
  color: #fff;
}

.faq-modern-answer {
  padding: 0 2rem 2rem 5.5rem;
  color: #6c757d;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-modern-answer p {
  margin-bottom: 1rem;
}

.faq-modern-answer p:last-child {
  margin-bottom: 0;
}

.faq-modern-answer h1,
.faq-modern-answer h2,
.faq-modern-answer h3,
.faq-modern-answer h4,
.faq-modern-answer h5,
.faq-modern-answer h6 {
  color: #2f2f2f;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-modern-answer ul,
.faq-modern-answer ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.faq-modern-answer li {
  margin-bottom: 0.5rem;
}

.faq-modern-answer a {
  color: #ff8c25;
  text-decoration: none;
  font-weight: 500;
}

.faq-modern-answer a:hover {
  color: #00b2ff;
  text-decoration: underline;
}

.faq-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 3rem;
}

.faq-empty-icon {
  width: 80px;
  height: 80px;
  background: rgba(108, 117, 125, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.faq-empty-icon i {
  font-size: 2.5rem;
  color: #6c757d;
}

.faq-empty-state h3 {
  font-family: "AR One Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 1rem;
}

.faq-empty-state p {
  font-family: Inter, sans-serif;
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.faq-contact-cta {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.faq-contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ff8c25;
}

.faq-contact-content {
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.faq-contact-icon {
  width: 80px;
  height: 80px;
  background: #ff8c25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-contact-icon i {
  font-size: 2rem;
  color: #fff;
}

.faq-contact-text {
  flex: 1;
  min-width: 250px;
}

.faq-contact-text h3 {
  font-family: "AR One Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}

.faq-contact-text > div {
  font-family: Inter, sans-serif;
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.faq-contact-actions {
  flex-shrink: 0;
}

.faq-contact-actions .btn {
  padding: 12px 32px;
  font-family: "AR One Sans", sans-serif;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-contact-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 37, 0.3);
}

/* Mobile Styles for Modern FAQ */
@media (max-width: 767px) {
  .faq-page-modern {
    padding: 2rem 0;
  }

  .faq-hero-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 16px;
  }

  .faq-hero-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .faq-hero-icon i {
    font-size: 2rem;
  }

  .faq-hero-title {
    font-size: 1.75rem;
  }

  .faq-hero-subtitle {
    font-size: 1rem;
  }

  .faq-modern-item {
    margin-bottom: 1rem;
    border-radius: 12px;
  }

  .faq-question-content {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .faq-question-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .faq-question-icon {
    width: 28px;
    height: 28px;
  }

  .faq-question-icon i {
    font-size: 14px;
  }

  .faq-modern-answer {
    padding: 0 1.5rem 1.5rem 4rem;
    font-size: 0.9rem;
  }

  .faq-contact-content {
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .faq-contact-icon {
    width: 60px;
    height: 60px;
  }

  .faq-contact-icon i {
    font-size: 1.5rem;
  }

  .faq-contact-text h3 {
    font-size: 1.25rem;
  }

  .faq-contact-text p {
    font-size: 0.9rem;
  }

  .faq-contact-actions .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .faq-empty-state {
    padding: 3rem 1.5rem;
  }

  .faq-empty-icon {
    width: 60px;
    height: 60px;
  }

  .faq-empty-icon i {
    font-size: 2rem;
  }
}

/* Desktop Styles for Modern FAQ */
@media (min-width: 768px) {
  .faq-hero-title {
    font-size: 3rem;
  }

  .faq-hero-subtitle {
    font-size: 1.4rem;
  }

  .faq-question-text {
    font-size: 1.2rem;
  }

  .faq-modern-answer {
    font-size: 1.1rem;
  }

  .faq-contact-text h3 {
    font-size: 1.75rem;
  }

  .faq-contact-text p {
    font-size: 1.1rem;
  }
}

/* Legacy FAQ mobile/desktop styles */
@media (max-width: 767px) {
  .car-faq {
    padding: 2rem 0;
  }

  .car-faq .container h2 {
    font-size: 20px;
    margin-bottom: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question span {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 1rem 1rem 1rem;
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .car-faq .container h2 {
    font-size: 36px;
    margin-bottom: 3rem;
  }

  .faq-question span {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 16px;
  }
}

/* Car Price Page SEO */
.car-price-page {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.car-price-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.car-price-card .card-body {
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.car-price-card .brand-logo {
  max-height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.car-price-card .card-title {
  font-family: "AR One Sans", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.car-price-card .car-price-full {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.car-price-card .car-price-full span {
  font-weight: 700;
  color: #343a40;
}

.monthly-payment-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin: auto 0;
}

.monthly-payment-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.monthly-payment-value {
  font-family: "AR One Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ff8c25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.monthly-payment-box .disclaimer-text {
  font-size: 0.75rem;
  margin-bottom: 0;
}

.car-price-card .favorite-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

@media (max-width: 767px) {
  .car-price-page {
    padding: 2rem 0;
  }
  .car-price-card .card-body {
    padding: 1.5rem;
  }
  .car-price-card .card-title {
    font-size: 1.75rem;
  }
  .monthly-payment-value {
    font-size: 2.5rem;
  }
  .car-price-card .img-fluid {
    border-radius: 20px 20px 0 0;
  }
}

/* Reviewer Avatar Styles */
.reviewer-avatar {
  width: 60px;
  height: 60px;
  position: relative;
}

.reviewer-avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f8f9fa;
}

.reviewer-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #6c757d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "AR One Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  border: 3px solid #f8f9fa;
}

/* Modern Contact Page Styles */
.contact-page-modern {
  padding: 4rem 0;
  background: #f8f9fa;
  min-height: 80vh;
}

.contact-hero-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ff8c25;
}

.contact-hero-icon {
  width: 80px;
  height: 80px;
  background: #ff8c25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-hero-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.contact-hero-title {
  font-family: "AR One Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-hero-content {
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero-content p {
  margin-bottom: 1rem;
}

.contact-hero-content p:last-child {
  margin-bottom: 0;
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ff8c25;
}

.contact-form-header {
  padding: 2.5rem 2.5rem 1rem;
  text-align: center;
}

.contact-form-header h2 {
  font-family: "AR One Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}

.contact-form-header p {
  font-family: Inter, sans-serif;
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-modern-form {
  padding: 1rem 2.5rem 2.5rem;
}

.contact-form-group {
  margin-bottom: 1.5rem;
}

.contact-form-label {
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-input-wrapper {
  position: relative;
}

.contact-input-icon {
  position: absolute;
  left: 1rem;
  top: 1.6rem;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1rem;
  z-index: 2;
}

.contact-form-control {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  color: #2f2f2f;
  background: #fff;
  transition: all 0.3s ease;
}

.contact-form-control:focus {
  outline: none;
  border-color: #ff8c25;
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 37, 0.15);
}

.contact-form-control::placeholder {
  color: #adb5bd;
  font-style: italic;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 1rem;
}

.contact-textarea + .contact-input-icon {
  top: 1.5rem;
  transform: none;
}

.contact-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-check-input {
  margin-top: 0.25rem;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid #e9ecef;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.contact-check-input:checked {
  background-color: #ff8c25;
  border-color: #ff8c25;
}

.contact-check-label {
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
}

.contact-check-label a {
  color: #ff8c25;
  text-decoration: none;
  font-weight: 500;
}

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

.contact-form-actions {
  text-align: center;
  margin-top: 2rem;
}

.contact-submit-btn {
  padding: 0.875rem 2.5rem;
  font-family: "AR One Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  background: #ff8c25;
  color: #fff;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-submit-btn:hover {
  background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 37, 0.3);
  color: #fff;
}

.contact-submit-btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 37, 0.25);
  color: #fff;
}

.contact-submit-btn i {
  font-size: 1rem;
}

/* Mobile Styles for Contact Page */
@media (max-width: 767px) {
  .contact-page-modern {
    padding: 2rem 0;
  }

  .contact-hero-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 16px;
  }

  .contact-hero-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .contact-hero-icon i {
    font-size: 2rem;
  }

  .contact-hero-title {
    font-size: 1.75rem;
  }

  .contact-hero-content {
    font-size: 1rem;
  }

  .contact-form-card {
    border-radius: 16px;
  }

  .contact-form-header {
    padding: 2rem 1.5rem 1rem;
  }

  .contact-form-header h2 {
    font-size: 1.5rem;
  }

  .contact-form-header p {
    font-size: 0.9rem;
  }

  .contact-modern-form {
    padding: 1rem 1.5rem 2rem;
  }

  .contact-form-group {
    margin-bottom: 1.25rem;
  }

  .contact-form-control {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.9rem;
  }

  .contact-input-icon {
    left: 0.875rem;
    font-size: 0.9rem;
  }

  .contact-textarea {
    min-height: 100px;
  }

  .contact-submit-btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    width: 100%;
  }
}

/* Desktop Styles for Contact Page */
@media (min-width: 768px) {
  .contact-hero-title {
    font-size: 3rem;
  }

  .contact-hero-content {
    font-size: 1.25rem;
  }

  .contact-form-header h2 {
    font-size: 2rem;
  }

  .contact-form-header p {
    font-size: 1.1rem;
  }
}

/* Car Leasing Page Styles */
.leasing-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.leasing-detail:last-child {
  border-bottom: none;
}

.car-leasing-info h2 {
  color: #2f2f2f;
  font-family: "AR One Sans", sans-serif;
  font-weight: 700;
}

.car-leasing-info .card {
  border-radius: 12px;
}

.car-leasing-info .alert {
  border-radius: 12px;
  border: none;
  background: rgba(13, 202, 240, 0.1);
  border-left: 4px solid #0dcaf0;
}

@media (max-width: 767px) {
  .car-leasing-info .leasing-detail {
    padding: 0.25rem 0;
    font-size: 0.9rem;
  }

  .car-leasing-info .card-body {
    padding: 1.5rem !important;
  }

  .car-leasing-info h5 {
    font-size: 1.1rem;
  }
}

/* Brand Header (Brand.php hero) */
.brand-header .brand-info h1 {
  font-size: 2rem;
  line-height: 1.25;
}

.brand-header .brand-logo img {
  max-width: 100%;
  max-height: 80px;
  height: auto;
}

@media (max-width: 991px) {
  .brand-header .car-calculator-form {
    margin-top: 1.5rem !important;
  }
}

@media (max-width: 575px) {
  .brand-header .brand-info h1 {
    font-size: 1.5rem;
  }

  .brand-header .brand-logo img {
    max-height: 56px;
  }
}

/* Brand Companies Section */
.brand-companies {
  background-color: #fff;
}

.brand-companies h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #023048;
}

.companies-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.company-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.company-item:last-child {
  border-bottom: none;
}

.company-logo {
  flex-shrink: 0;
  width: 110px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.company-info {
  flex-shrink: 0;
  width: 200px;
}

.company-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #023048;
  margin: 0;
}

.company-locations {
  flex: 1;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 180px;
  flex: 0 1 auto;
}

.location-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #023048;
  margin-bottom: 6px;
}

.location-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #333;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.location-phone:hover {
  color: #127bf6;
}

.location-phone i {
  font-size: 0.75rem;
  color: #127bf6;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.8125rem;
  color: #6c757d;
}

.location-address i {
  font-size: 0.75rem;
  color: #127bf6;
  margin-top: 2px;
}

@media (max-width: 1200px) {
  .location-box {
    min-width: 160px;
  }
}

@media (max-width: 991px) {
  .brand-companies h2 {
    font-size: 1.5rem;
  }

  .company-item {
    gap: 16px;
  }

  .company-logo {
    width: 95px;
    height: 45px;
  }

  .company-info {
    width: 160px;
  }

  .company-info h3 {
    font-size: 1rem;
  }

  .location-box {
    min-width: 140px;
    padding: 10px 12px;
  }
}

@media (max-width: 767px) {
  .company-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-bottom: none;
    margin-bottom: 15px;
  }

  .company-item:last-child {
    margin-bottom: 0;
  }

  .company-logo {
    width: auto;
    max-width: 140px;
    height: auto;
    max-height: 40px;
    justify-content: flex-start;
    align-self: flex-start;
  }

  .company-logo img {
    max-height: 40px;
  }

  .company-info {
    width: 100%;
  }

  .company-info h3 {
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .company-locations {
    width: 100%;
  }

  .locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .locations-grid > .location-box:only-child {
    grid-column: 1 / -1;
  }

  .location-box {
    min-width: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
  }

  .location-name {
    font-size: 0.875rem;
  }

  .location-phone,
  .location-address {
    font-size: 0.8125rem;
  }
}

@media (max-width: 576px) {
  .brand-companies h2 {
    font-size: 1.25rem;
  }

  .company-item {
    padding: 16px;
    gap: 10px;
  }

  .company-logo {
    max-width: 120px;
    max-height: 36px;
  }

  .company-logo img {
    max-height: 36px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* Service Offer Cards */
.service-offer-item {
  background: linear-gradient(135deg, #3860be 0%, #2d4a8f 100%);
}

.service-offer-item > a,
.service-offer-item > .row {
  padding: 16px;
  padding-bottom: 0;
}

.service-offer-text {
  color: #fff;
}

.service-offer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  line-height: 1.3;
}

.service-offer-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.service-offer-image-container {
  /*  background: #fff;*/
  border-radius: 12px;
  /* padding: 16px; */
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}

.service-offer-promo-image {
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.service-offer-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ccc;
  text-align: center;
}

.service-offer-placeholder i {
  font-size: 3rem;
  margin-bottom: 8px;
}

.service-offer-placeholder span {
  font-size: 14px;
  color: #999;
}

/* Tire offer cards */
.tire-offer-item .share-btn {
  top: 16px;
  right: 12px;
}

.tire-offer-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding-right: 40px;
}

.tire-offer-header-check {
  flex: 1 1 auto;
  min-width: 0;
}

.tire-offer-item .car-offer-item-checkbox {
  padding: 4px 0;
}

.tire-offer-item .car-offer-item-checkbox-check {
  margin-right: 8px;
}

.tire-offer-item .car-offer-item-checkbox span {
  font-size: 0.85rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tire-offer-header-price {
  flex: 0 0 auto;
  margin-left: auto;
}

.tire-offer-price {
  margin: 0;
  width: fit-content;
}

.tire-offer-body {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tire-offer-media {
  flex: 0 0 28%;
  max-width: 180px;
}

.tire-offer-image-container {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tire-offer-item .car-offer-item-image .tire-offer-promo-image {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.tire-offer-expiration {
  font-size: 12px;
  margin-top: 0.5rem;
  color: #fff;
  opacity: 0.8;
}

.tire-offer-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.tire-offer-content {
  margin-bottom: 8px;
}

.tire-offer-item .service-offer-description p {
  margin-bottom: 0.5rem;
}

.tire-offer-item .service-offer-description p:last-child {
  margin-bottom: 0;
}

/* Mobile service offers + tire cards */
@media (max-width: 768px) {
  .service-offer-image-container {
    min-height: 120px;
    padding: 12px;
  }

  .service-offer-promo-image {
    max-height: 150px;
  }

  .tire-offer-header {
    padding-right: 36px;
    margin-bottom: 8px;
  }

  /* Text wraps around a smaller image on mobile. */
  .tire-offer-body {
    display: block;
    overflow: hidden;
  }

  .tire-offer-media {
    float: left;
    width: 38%;
    max-width: 120px;
    margin: 0 10px 6px 0;
  }

  .tire-offer-image-container {
    padding: 0;
  }

  .tire-offer-item .car-offer-item-image .tire-offer-promo-image {
    max-height: 110px;
  }

  .tire-offer-copy {
    overflow: hidden;
  }

  .tire-offer-item .car-offer-item-actions {
    clear: both;
  }

  .tire-offer-expiration {
    font-size: 11px;
    margin-top: 0.25rem;
  }

  .service-offer-title {
    font-size: 0.9rem;
  }

  .service-offer-description {
    font-size: 0.8rem;
  }
}

/* Page KM Calculator - Fuel costs on car cards */
.page-km-calculator {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.km-slider-wrapper {
  max-width: 500px;
}

.km-slider-wrapper .form-range {
  height: 8px;
}

.car-fuel-costs {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  text-align: right;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}

.fuel-costs-title {
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  color: #333;
}

.fuel-cost-item {
  color: #666;
}

.fuel-cost-item span {
  font-weight: 600;
  color: #333;
}
