/* Basic */

body {
	padding: 0px;
	margin: 0px;
}

html,
body {
  overflow-x: hidden;
}

.section-container {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
}

/* HERO SECTION START*/

.hero-heading span {
	color: #FF7A00;
}

.hero-description span {
	color: #CC4F4F;
}

/* Lej Detail Section */

.lej-detail-col-title span {
	color: #EB7F25;
}

/* Collections Section START */

/* BASE TAB STYLE */
.vrc-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 1000px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  box-shadow: 0 2px 6px #1C202B0F;
}

/* ICON */
.vrc-tab .tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #AAAAAA;
  transition: all 0.3s ease;
}

.vrc-tab .tab-icon svg {
  display: block;
  width: 17px;
  height: 17px;
}

.vrc-tab .tab-icon svg * {
  fill: currentColor !important;
  stroke: none !important;
}

/* TEXT */
.vrc-tab .tab-title {
  color: #404040;
  line-height: 1;
  transition: all 0.3s ease;
}

/* HOVER STATE */
.vrc-tab:hover {
  background: #FFF7F0;
  border-color: #FF7A00;
  box-shadow: none;
}

.vrc-tab:hover .tab-title,
.vrc-tab:hover .tab-icon {
  color: #FF7A00;
}

/* ACTIVE STATE */
.vrc-tab.vrc-tab-active {
  background: #FFF7F0;
  border-color: #FF7A00;
  box-shadow: none;
}

.vrc-tab.vrc-tab-active .tab-title,
.vrc-tab.vrc-tab-active .tab-icon {
  color: #FF7A00;
}

/* CLICK EFFECT */
.vrc-tab:active {
  transform: scale(0.97);
}

/* ARROWS WRAPPER */
.vrc-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* BASE ARROW STYLE */
.vrc-arrow {
  width: 42px;
  height: 42px;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  box-shadow: 0 2px 6px #1C202B0F;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #404040;
}

/* SVG ICON */
.vrc-arrow svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* Force icon to follow color */
.vrc-arrow svg * {
  stroke: currentColor !important;
  fill: none !important;
  transition: all 0.3s ease;
}

/* HOVER STATE */
.vrc-arrow:hover {
  background: #FF7A00;
  border-color: #FF7A00;
  box-shadow: none;
  color: #ffffff;
}

/* CLICK EFFECT */
.vrc-arrow:active {
  transform: scale(0.95);
}

/* DISABLED STATE */
.vrc-arrow.vrc-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* VEHICLES GRID */
.vrc-grid {
  display: grid;
  grid-template-columns: repeat(3, 385px);
  justify-content: center;
  gap: 32px;
  width: 100%;
  align-items: start;
}

.vrc-grid-loading {
  opacity: 0.45;
  pointer-events: none;
}

/* VEHICLE CARD RESET */
.vrc-card,
.vrc-card * {
  box-sizing: border-box;
}

.vrc-card img {
  max-width: 100%;
}

/* VEHICLE CARD */
.vrc-card {
  width: 100%;
  max-width: 385px;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 12px 12px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* CARD IMAGE */
.vrc-card-image-wrap {
  width: 100%;
  height: 204px !important;
  min-height: 204px !important;
  max-height: 204px !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden !important;
  background: transparent;
  margin-bottom: 14px;
}

.vrc-card-image-wrap img {
  width: 100%;
  height: 100% !important;
  object-fit: contain !important;
  object-position: top center !important;
  display: block;
}

/* CARD CONTENT */
.vrc-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* TITLE + PRICE ROW */
.vrc-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin-bottom: 12px;
}

.vrc-card-title {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #171717;
  margin: 0;
  min-width: 0;
}

.vrc-card-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-shrink: 0;
  background: #eaf7ea;
  border-radius: 999px;
  padding: 5px 15px;
  white-space: nowrap;
  color: #5e5e5e;
}

.vrc-card-price .price-main {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.vrc-card-price .price-day {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-left: 2px;
}

/* LOCATION */
.vrc-card-location {
  display: flex;
  justify-content: flex-start !important;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-bottom: 12px;
}

.vrc-card-location img,
.vrc-card-location svg {
  width: 15px !important;
  height: 16px !important;
  max-width: 15px !important;
  object-fit: contain;
  flex: 0 0 15px;
  display: block;
}

.vrc-card-location .location-text {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #525252;
  min-width: 0;
}

/* FEATURES */
.vrc-card-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 12px;
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
}

.vrc-card-feature {
  display: flex;
  justify-content: flex-start !important;
  align-items: center;
  gap: 15px;
  padding: 2px 0 2px 2px;
  min-width: 0;
  overflow: hidden;
}

.vrc-card-feature:empty {
  display: none !important;
}

.vrc-card-feature:has(.feature-text:empty) {
  display: none !important;
}

.vrc-card-feature .feature-icon,
.vrc-card-feature .feature-icon img,
.vrc-card-feature img.feature-icon {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  min-width: 16px !important;
  object-fit: contain;
  display: block;
  flex: 0 0 16px;
}

.vrc-card-feature .feature-text {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #171717;
  min-width: 0;
  word-break: normal;
  overflow-wrap: normal;
}

/* BUTTON */
.vrc-card-direct-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 18px;
  margin-top: auto;
  background: #ff7a00;
  border: 1px solid #ff7a00;
  border-radius: 6px;
  color: #ffffff !important;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vrc-card-direct-button:hover,
.vrc-card-direct-button:focus {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* EMPTY / ERROR STATE */
.vrc-no-vehicles {
  grid-column: 1 / -1;
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  color: #525252;
}

/* HIDDEN URL FIELD */
.vrc-card-url {
  display: none !important;
}

.vrc-loading-disabled {
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .vrc-grid {
    grid-template-columns: repeat(2, 385px);
    justify-content: center;
  }

  .vrc-card {
    max-width: 385px;
  }
}

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

  .vrc-card {
    max-width: 100%;
  }

  .vrc-card-image-wrap {
    height: 204px !important;
    min-height: 204px !important;
    max-height: 204px !important;
  }
}

@media (max-width: 767px) {
  .vrc-grid {
    grid-template-columns: 1fr;
  }

  .vrc-card {
    max-width: 100%;
  }

  .vrc-card-image-wrap {
    height: 204px !important;
    min-height: 204px !important;
    max-height: 204px !important;
  }

  .vrc-card-title {
    font-size: 18px;
  }

  .vrc-card-title-row {
    align-items: flex-start;
  }
}

/* Process Section START */

.process-items:last-child {
	border: none;
}

@media (max-width: 1023px) {
	.process-items:last-child {
	  border: none;
  }
	
	.process-items:nth-child(2) {
	  border-right: none;
  }

	.process-items:nth-child(3) {
	  border-bottom: none;
  }
}

@media (max-width: 478px) {
	.process-items:nth-child(3) {
	  border-bottom: 1px solid rgb(229, 229, 229);
  }
}

/* FAQ Section START */

.faq-item {
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.faq-header {
  cursor: pointer;
  user-select: none;
}

.faq-content {
  display: none;
}

.faq-item.faq-active .faq-content {
  display: block;
}

.faq-icon-img {
  transition: opacity 0.25s ease;
}

/* FAQs Page START */

@media (max-width: 767px) {
  .faqs-feature-section {
	  padding-left: 20px !important;
	  padding-right: 20px !important;
  }
}

/* About Page START */

.stats-col:last-child {
	border: none;
}

@media (max-width: 1119px) {
	.stats-col:nth-child(2) {
		border-right: none;
		border-bottom: 1px solid #E5E5E5;
	}
	
	.stats-col:first-child {
		border-bottom: 1px solid #E5E5E5;
	}
}

@media (max-width: 767px) {
	.stats-col:first-child {
		border-right: none;
	}
	
	.stats-col:nth-child(3) {
		border-right: none;
		border-bottom: 1px solid #E5E5E5;
	}
}

/* Vehicle Single Page START */

.vrc-single-section {
  width: 100%;
  background: #f8f8f8;
  padding: 40px 20px;
}

.vrc-single-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

html,
body,
#page,
.site,
.site-content,
main,
article,
.entry-content,
.ct-section,
.ct-section-inner-wrap {
    overflow: visible !important;
}

.vrc-single-section,
.vrc-single-container,
.vrc-single-left,
.vrc-single-right {
    overflow: visible !important;
}

.vrc-single-container {
    display: flex !important;
    align-items: flex-start !important;
    gap: 24px !important;
}

.vrc-single-left {
    flex: 0 0 calc(65% - 12px) !important;
    max-width: calc(65% - 12px) !important;
    min-width: 0 !important;
}

.vrc-single-right {
    flex: 0 0 calc(35% - 12px) !important;
    max-width: calc(35% - 12px) !important;
    min-width: 0 !important;
    /*position: sticky !important;
    top: 40px !important;
    align-self: flex-start !important;
    height: fit-content !important;
    z-index: 8 !important;*/
}

@media (max-width: 991px) {
    .vrc-single-container {
        display: block !important;
    }

    .vrc-single-left,
    .vrc-single-right {
        max-width: 100% !important;
        flex: none !important;
    }

    .vrc-single-right {
        position: static !important;
    }
}

.vrc-single-main-image {
  width: 100%;
  min-height: 395px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vrc-single-main-image img {
  width: 100%;
  height: 100%;
  max-height: 395px;
  object-fit: contain;
  display: block;
}

.vrc-single-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.vrc-single-gallery-item {
  height: 115px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
}

.vrc-single-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vrc-single-gallery-item.is-active {
  border-color: #ff7a00;
}

.vrc-single-info-card {
  width: 100%;
  padding: 22px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ffffff;
}

.vrc-single-title {
  margin: 0 0 18px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  line-height: 1.25;
}

.vrc-single-location {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.vrc-single-location-text {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #555555;
}

.vrc-single-features-grid {
  display: flex;
  margin-bottom: 28px;
}

.vrc-single-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vrc-single-feature-text {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #171717;
}

@media (max-width: 991px) {
  .vrc-single-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .vrc-single-section {
    padding: 24px 14px;
  }

  .vrc-single-main-image {
    min-height: 300px;
  }

  .vrc-single-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vrc-single-gallery-item {
    height: 90px;
  }

  .vrc-single-title {
    font-size: 21px;
  }
}

/* Vehicle Single Page Booking Dates START */

.vrc-single-booking {
  margin-top: 24px;
}

.vrc-single-booking-title {
  margin: 0 0 10px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
}

.vrc-single-booking-title::after {
  content: " *";
  color: #ff3b30;
}

.vrc-single-date-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vrc-single-date-input {
  width: 100%;
  height: 48px;
  padding: 12px 12px 12px 42px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  background-color: #fafafa;
  background-image: url("/wp-content/uploads/2026/04/Icon-Interface-Outline-1.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left 12px center;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: #404040;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
}

.vrc-single-date-input::placeholder {
  color: #404040;
  opacity: 1;
}

.vrc-single-date-input:focus {
  border-color: #404040;
}

@media (max-width: 478px) {
  .vrc-single-date-row {
    grid-template-columns: 1fr;
  }
}

.vrc-single-hidden-car-id {
  display: none !important;
}

.vrc-single-availability-status {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f5f5f5;
  color: #404040;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.vrc-single-availability-status::before {
  content: "i";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: 2px solid currentColor;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.vrc-single-availability-status.is-available {
  background: #e9f8ee;
  color: #16803c;
}

.vrc-single-availability-status.is-unavailable {
  background: #fdecec;
  color: #c62828;
}

.vrc-single-availability-status.is-checking {
  background: #fff7e8;
  color: #b86500;
}

.vrc-single-book-btn {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 10px;
  background: #082755;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff !important;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.vrc-single-book-btn:hover,
.vrc-single-book-btn:focus {
  background: #ff7a00;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

.vrc-single-book-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: auto;
}

/* Vehicle Rating Stars @767px */

@media (max-width: 767px) {
    .vrc-vc-card-rating-copy span {
        display: inline !important;
    }
}

/* More Vehicles Grid START */

.vrc-more-vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.vrc-more-vehicles-grid .vrc-card-image-wrap {
  height: 220px !important;
  min-height: 220px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vrc-more-vehicles-grid .vrc-card-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 991px) {
  .vrc-more-vehicles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .vrc-more-vehicles-grid {
    grid-template-columns: 1fr;
  }
	
	.vrc-more-vehicles-grid .vrc-card-image-wrap {
    height: 200px !important;
    min-height: 200px !important;
  }
}

/* Vehicle Single Booking Page START */

.vrc-booking-left .vrc-card {
  height: auto;
}

.vrc-booking-left .vrc-card-image-wrap {
  height: auto;
  min-height: 0;
}

.vrc-booking-left .vrc-card-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.vrc-booking-title {
  margin-bottom: 32px !important;
}

.vrc-booking-form-box {
  width: 100%;
}

.vrc-booking-form-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 28px 32px;
  padding: 32px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  box-sizing: border-box;
}

.vrc-booking-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.vrc-booking-field label {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  line-height: 1.2;
}

.vrc-booking-field label::after {
  content: " *";
  color: #ff3b30;
}

.vrc-booking-field select,
.vrc-booking-field input,
.vrc-location-toggle {
  width: 100%;
  height: 48px;
  padding: 12px 14px 12px 42px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  background-color: #fafafa;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #404040;
  opacity: 1;
  box-sizing: border-box;
}

.vrc-booking-field select:disabled,
.vrc-booking-field input:disabled {
  cursor: not-allowed;
}

.vrc-booking-field input:not(:disabled) {
  cursor: text;
}

#vrc-booking-category {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none !important;
  box-shadow: none !important;
  background-image: url("/wp-content/uploads/2026/05/Icon-Interface-Outline.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left 14px center;
  padding-right: 14px;
}

#vrc-booking-category::-ms-expand {
  display: none;
}

#vrc-booking-location {
  display: none !important;
}

.vrc-custom-location-dropdown {
  position: relative;
  width: 100%;
}

.vrc-location-toggle {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 46px;
  text-align: left;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  background-image: url("/wp-content/uploads/2026/05/Group-2.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left 14px center;
}

.vrc-location-selected {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 22px;
}

.vrc-location-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.vrc-custom-location-dropdown.is-open .vrc-location-arrow {
  transform: translateY(-35%) rotate(225deg);
}

.vrc-location-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.vrc-custom-location-dropdown.is-open .vrc-location-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vrc-location-option {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #374151;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.vrc-location-option:hover,
.vrc-location-option.is-selected {
  background: #f3f4f6;
  color: #111827;
}

.vrc-location-menu::-webkit-scrollbar {
  width: 6px;
}

.vrc-location-menu::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 20px;
}

#vrc-booking-pickup,
#vrc-booking-release {
  background-image: url("/wp-content/uploads/2026/05/Icon-Interface-Outline-1.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left 14px center;
  cursor: pointer;
}

.vrc-booking-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 48px;
}

.vrc-booking-back-btn {
  margin-right: 48px;
  padding: 0;
  border: none;
  background: transparent;
  color: #a3a3a3;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  cursor: pointer;
}

.vrc-booking-next-btn {
  height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  background: #082755;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.vrc-booking-next-btn:hover {
  background: #ff7a00;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Flatpickr Calendar Design */
.flatpickr-calendar {
  background: #ffffff !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14) !important;
  padding: 14px 14px 10px !important;
  font-family: Poppins, sans-serif !important;
  width: 320px !important;
}

.flatpickr-months {
  margin-bottom: 10px !important;
}

.flatpickr-current-month {
  padding-top: 2px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #111827 !important;
}

.flatpickr-monthDropdown-months,
.numInput.cur-year {
  font-weight: 600 !important;
  color: #111827 !important;
}

.flatpickr-weekdays {
  margin-bottom: 8px !important;
}

.flatpickr-weekday {
  color: #6b7280 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}

.flatpickr-day {
  border-radius: 12px !important;
  color: #374151 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 38px !important;
  height: 38px !important;
  width: 38px !important;
  margin: 2px !important;
  transition: all 0.18s ease !important;
}

.flatpickr-day:hover {
  background: #f3f4f6 !important;
  border-color: #f3f4f6 !important;
  color: #111827 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #082755 !important;
  border-color: #082755 !important;
  color: #ffffff !important;
}

.flatpickr-day.today {
  border: 1px solid #ff7a00 !important;
  color: #111827 !important;
}

.flatpickr-day.today:hover {
  background: #fff3e8 !important;
  border-color: #ff7a00 !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  top: 16px !important;
  padding: 6px !important;
  border-radius: 10px !important;
  transition: background-color 0.18s ease !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  background: #f3f4f6 !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  width: 14px !important;
  height: 14px !important;
}

.flatpickr-monthDropdown-months:focus,
.numInput.cur-year:focus {
  outline: none !important;
}

@media (max-width: 991px) {
  .vrc-booking-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .vrc-booking-form-grid {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .vrc-booking-actions {
    justify-content: space-between;
  }

  .vrc-booking-back-btn {
    margin-right: 20px;
  }

  .flatpickr-calendar {
    width: 300px !important;
  }
}

/* Checkout Page START */

body.woocommerce-checkout .entry-content,
body.woocommerce-checkout main {
	padding: 0px !important;
}

body.woocommerce-checkout form.checkout {
  max-width: 920px;
  margin: 0 auto;
  font-family: Poppins, sans-serif;
}

/* Hide default extra blocks */
body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout .woocommerce-checkout-review-order-table,
body.woocommerce-checkout .woocommerce-form-coupon-toggle {
  display: none !important;
}

/* Field layout */
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 24px;
}

body.woocommerce-checkout #billing_email_field,
body.woocommerce-checkout #billing_address_1_field {
  grid-column: 1 / -1;
}

/* Labels */
body.woocommerce-checkout .form-row label {
  display: block;
  margin: 0 0 10px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #a3a3a3;
}

body.woocommerce-checkout .form-row label .required {
  color: #ff3b30;
}

/* Inputs */
body.woocommerce-checkout .form-row input,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select {
  width: 100%;
  height: 54px;
  padding: 0 20px 0 32px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  background: #fafafa;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  color: #111111;
  outline: none !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .form-row input::placeholder {
  color: #a3a3a3;
  opacity: 1;
}

/* Payment box */
body.woocommerce-checkout #payment {
  max-width: 920px;
  margin: 0px auto 0;
  background: transparent !important;
}

body.woocommerce-checkout #place_order {
  width: 166px;
  height: 56px;
  border: none;
  border-radius: 10px;
  background: #082755;
  color: #ffffff;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

body.woocommerce-checkout #place_order:hover {
  background: #ff7a00;
}

/* Custom Checkout Layout START */

.checkout-section,
.checkout-section .ct-section-inner-wrap,
.checkout-section .ct-div-block,
.checkout-section .oxy-shortcode,
.checkout-section .vrc-custom-checkout,
.checkout-section .vrc-custom-checkout-form {
  width: 100% !important;
  max-width: 100% !important;
}

.checkout-section .ct-section-inner-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.checkout-section,
.checkout-section .ct-section-inner-wrap,
.checkout-section .ct-div-block,
.checkout-section .oxy-shortcode,
.checkout-section .vrc-custom-checkout,
.checkout-section .vrc-custom-checkout-form,
.checkout-section .vrc-checkout-layout {
  overflow: visible !important;
}

.vrc-custom-checkout {
  width: 100%;
  max-width: 100%;
  font-family: Poppins, sans-serif;
}

.vrc-custom-checkout-form {
  width: 100%;
  max-width: 100%;
}

.vrc-checkout-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 70%) minmax(320px, 30%);
  gap: 100px;
  align-items: start !important;
  overflow: visible !important;
}

.vrc-checkout-left {
  min-width: 0;
  overflow: visible !important;
}

.vrc-checkout-summary {
  position: sticky;
  top: 40px;
  align-self: start;
  height: fit-content;
  padding: 28px;
  border: 1px solid #dddddd;
  border-radius: 12px;
  background: #ffffff;
  z-index: 2;
}

.vrc-checkout-summary h2,
.vrc-checkout-head h2 {
  margin: 0;
  color: #1f2937;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.vrc-checkout-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.vrc-checkout-head p {
  margin: 4px 0 0;
  color: #8ca3c3;
  font-size: 14px;
  font-weight: 400;
}

.vrc-checkout-head span {
  color: #8ca3c3;
  font-size: 14px;
  white-space: nowrap;
}

.vrc-checkout-step {
  margin-bottom: 72px;
}

.vrc-checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
}

.vrc-custom-checkout .form-row {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

.vrc-custom-checkout .form-row label,
.vrc-readonly-field label {
  display: block;
  margin: 0 0 10px;
  color: #1f2937;
  font-size: 16px;
  font-weight: 600;
}

.vrc-required,
.vrc-custom-checkout .required {
  color: #ff3b30 !important;
}

.vrc-custom-checkout abbr.required {
  text-decoration: none !important;
}

.vrc-custom-checkout input,
.vrc-readonly-field input {
  width: 100%;
  height: 54px;
  padding: 0 24px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  background: #fafafa;
  color: #1f2937;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  outline: none !important;
  box-shadow: none !important;
}

.vrc-custom-checkout input::placeholder {
  color: #8ca3c3;
}

#billing_email_field {
  grid-column: 1 / -1;
}

#billing_address_1_field,
#billing_city_field {
  grid-column: auto !important;
}

#billing_address_1_field,
#billing_city_field,
#billing_first_name_field,
#billing_phone_field {
  width: 100% !important;
}

.vrc-rental-title {
  position: relative;
  margin: 0 0 24px;
  padding-left: 22px;
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
}

.vrc-rental-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 4px solid #dbeafe;
  border-radius: 50%;
  background: #3b82f6;
}

.vrc-dropoff-title {
  margin-top: 28px;
}

.vrc-payment-wrap {
  padding: 24px;
  border-radius: 12px;
  background: #f7f8fa;
}

.vrc-payment-wrap #payment {
  background: transparent !important;
}

.vrc-payment-wrap .wc_payment_methods {
  padding: 0 !important;
  border: none !important;
}

.vrc-payment-wrap .payment_box {
  background: #f7f8fa !important;
}

.vrc-payment-wrap .form-row.place-order {
  display: none !important;
}

.vrc-confirm-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  margin-bottom: 18px;
  padding: 16px 24px;
  border-radius: 10px;
  background: #f7f8fa;
  color: #1f2937;
  font-size: 15px;
  font-weight: 600;
}

.vrc-confirm-row input {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.vrc-checkout-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}

.vrc-return-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f2937;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
}

.vrc-place-order-target #place_order {
  width: 166px;
  height: 56px;
  border: none;
  border-radius: 10px;
  background: #082755;
  color: #ffffff;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vrc-place-order-target #place_order:hover {
  background: #ff7a00;
}

.vrc-security-box {
  margin-top: 36px;
}

.vrc-security-box img {
  width: 36px;
  height: 36px;
  display: block;
  margin-bottom: 18px;
}

.vrc-security-box strong {
  display: block;
  margin-bottom: 8px;
  color: #1f2937;
  font-size: 16px;
  font-weight: 700;
}

.vrc-security-box p {
  margin: 0;
  color: #8ca3c3;
  font-size: 14px;
  line-height: 1.6;
}

.vrc-summary-image {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  display: block;
  margin: 24px 0;
  border-radius: 10px;
  background: #fafafa;
}

.vrc-summary-title-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: #1f2937;
  font-size: 16px;
}

.vrc-summary-details {
  margin: 0 0 24px;
  color: #5f6f89;
  font-size: 14px;
  line-height: 1.7;
}

.vrc-summary-line,
.vrc-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
  color: #5f6f89;
  font-size: 15px;
}

.vrc-summary-total {
  color: #1f2937;
  font-size: 20px;
  font-weight: 700;
}

/* Checkout Mobile */
@media (max-width: 991px) {
  .vrc-checkout-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vrc-checkout-summary {
    order: -1;
    position: static;
  }
}

@media (max-width: 767px) {
  body.woocommerce-checkout .entry-content,
  body.woocommerce-checkout main {
    padding: 50px 20px !important;
  }

  body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.woocommerce-checkout #billing_email_field,
  body.woocommerce-checkout #billing_address_1_field {
    grid-column: auto;
  }

  .vrc-checkout-grid {
    grid-template-columns: 1fr;
  }

  #billing_email_field {
    grid-column: auto;
  }

  .vrc-checkout-step {
    margin-bottom: 48px;
  }

  .vrc-checkout-head h2,
  .vrc-checkout-summary h2 {
    font-size: 22px;
  }

  .vrc-checkout-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Booking Confirmation Page START */

.vrc-confirmation-page {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(320px, 42%);
  gap: 64px;
  font-family: Poppins, sans-serif;
}

.vrc-confirmation-left h1 {
  margin: 0 0 32px;
  color: #082755;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.vrc-confirmation-box,
.vrc-confirmation-right {
  padding: 32px;
  border: 1px solid #dddddd;
  border-radius: 16px;
  background: #ffffff;
}

.vrc-confirmation-box h2,
.vrc-confirmation-right h2 {
  margin: 0 0 24px;
  color: #171717;
  font-size: 24px;
  font-weight: 700;
}

.vrc-confirmation-box p {
  margin: 0 0 14px;
  color: #525252;
  font-size: 15px;
  line-height: 1.6;
}

.vrc-confirmation-box strong {
  color: #171717;
}

.vrc-confirmation-home-btn {
  height: 56px;
  margin-top: 32px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #082755;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background-color 0.3s ease;
}

.vrc-confirmation-home-btn:hover {
  background: #ff7a00;
}

.vrc-confirmation-vehicle-img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #fafafa;
}

.vrc-confirmation-right h3 {
  margin: 0 0 24px;
  color: #171717;
  font-size: 22px;
  font-weight: 700;
}

.vrc-confirmation-details p,
.vrc-confirmation-total p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid #eeeeee;
  color: #525252;
  font-size: 15px;
}

.vrc-confirmation-details strong,
.vrc-confirmation-total strong {
  color: #171717;
  text-align: right;
}

.vrc-confirmation-total .is-total {
  color: #082755;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .vrc-confirmation-page {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vrc-confirmation-right {
    order: -1;
  }
}

@media (max-width: 767px) {
  .vrc-confirmation-left h1 {
    font-size: 32px;
  }

  .vrc-confirmation-box,
  .vrc-confirmation-right {
    padding: 22px;
  }

  .vrc-confirmation-details p,
  .vrc-confirmation-total p {
    flex-direction: column;
    gap: 4px;
  }

  .vrc-confirmation-details strong,
  .vrc-confirmation-total strong {
    text-align: left;
  }
}

/* FAQ Page Tabs Scroll */

/* Scrollable tabs without visible scrollbar */
.faq-tabs .oxy-tabs-wrapper,
.faq-tabs .oxy-tabs,
.faq-tabs [role="tablist"] {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    max-width: 100% !important;
    -webkit-overflow-scrolling: touch;

    /* Hide scrollbar */
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* IE/Edge */
}

.faq-tabs .oxy-tabs-wrapper::-webkit-scrollbar,
.faq-tabs .oxy-tabs::-webkit-scrollbar,
.faq-tabs [role="tablist"]::-webkit-scrollbar {
    display: none;              /* Chrome, Safari, Edge */
}

.faq-tabs .oxy-tab,
.faq-tabs [role="tab"] {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}