:root {
--fb-primary:   #7B3F00;
--fb-accent:    #C8860A;
--fb-light:     #FDF6EC;
--fb-dark:      #2C1810;
--fb-border:    #D4B896;
--fb-text:      #3D2B1F;
--fb-muted:     #8C7B6E;
--fb-white:     #FFFFFF;
--fb-shadow:    0 2px 12px rgba(0,0,0,0.12);
--fb-radius:    3px;
--fb-font-body: Georgia, 'Times New Roman', serif;
--fb-font-ui:   'Trebuchet MS', Tahoma, Geneva, sans-serif;
} .fb-vehicles-section {
font-family: var(--fb-font-body);
max-width: 1200px;
margin: 0 auto;
padding: 20px 15px;
}
.fb-vehicles-header {
text-align: center;
margin-bottom: 40px;
border-bottom: 2px solid var(--fb-border);
padding-bottom: 20px;
}
.fb-section-title {
font-family: var(--fb-font-body);
font-size: 2rem;
font-weight: normal;
color: var(--fb-primary);
margin: 0 0 8px;
letter-spacing: 1px;
}
.fb-section-subtitle {
font-size: 1rem;
color: var(--fb-muted);
margin: 0;
font-style: italic;
} .fb-vehicles-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 28px;
} .fb-vehicle-card {
background: var(--fb-white);
border: 1px solid var(--fb-border);
box-shadow: var(--fb-shadow);
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
overflow: hidden;
}
.fb-vehicle-card:hover {
transform: translateY(-3px);
box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.fb-card-image {
height: 210px;
background-size: cover;
background-position: center;
position: relative;
background-color: #e8ddd0;
}
.fb-card-image--placeholder {
display: flex;
align-items: center;
justify-content: center;
font-size: 60px;
background: #ede0d0;
}
.fb-card-badge {
position: absolute;
top: 12px;
left: 12px;
background: var(--fb-primary);
color: var(--fb-white);
font-family: var(--fb-font-ui);
font-size: 0.72rem;
text-transform: uppercase;
letter-spacing: 1px;
padding: 3px 10px;
}
.fb-card-body {
padding: 16px 18px 20px;
}
.fb-card-title {
font-family: var(--fb-font-body);
font-size: 1.15rem;
font-weight: bold;
color: var(--fb-dark);
margin: 0 0 10px;
}
.fb-card-specs {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 12px;
}
.fb-spec {
font-family: var(--fb-font-ui);
font-size: 0.78rem;
color: var(--fb-muted);
background: var(--fb-light);
border: 1px solid var(--fb-border);
padding: 2px 8px;
}
.fb-card-price {
font-family: var(--fb-font-ui);
font-size: 1rem;
font-weight: bold;
color: var(--fb-accent);
margin-bottom: 14px;
} .fb-btn {
display: inline-block;
font-family: var(--fb-font-ui);
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 1.5px;
padding: 9px 22px;
border: none;
cursor: pointer;
transition: background 0.2s ease;
text-decoration: none;
}
.fb-btn-details {
background: var(--fb-primary);
color: var(--fb-white);
width: 100%;
}
.fb-btn-details:hover { background: #5c2d00; }
.fb-btn-book {
background: var(--fb-accent);
color: var(--fb-white);
width: 100%;
margin-top: 14px;
font-size: 0.9rem;
padding: 12px 22px;
}
.fb-btn-book:hover { background: #a3690a; }
.fb-btn-submit {
background: var(--fb-primary);
color: var(--fb-white);
width: 100%;
padding: 12px;
font-size: 0.9rem;
margin-top: 8px;
}
.fb-btn-submit:hover { background: #5c2d00; } .fb-modal {
position: fixed;
inset: 0;
z-index: 99999;
}
.fb-modal-overlay {
position: absolute;
inset: 0;
background: rgba(20,10,5,0.7);
}
.fb-modal-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: var(--fb-white);
width: 92%;
max-width: 920px;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 16px 60px rgba(0,0,0,0.4);
}
.fb-modal-close {
position: absolute;
top: 12px;
right: 14px;
background: transparent;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--fb-muted);
z-index: 10;
line-height: 1;
}
.fb-modal-close:hover { color: var(--fb-dark); }
.fb-modal-inner {
display: flex;
gap: 0;
}
.fb-modal-left {
flex: 0 0 55%;
background: var(--fb-dark);
}
.fb-modal-right {
flex: 1;
padding: 28px 26px;
overflow-y: auto;
} .fb-gallery-main {
height: 320px;
overflow: hidden;
}
.fb-gallery-main img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.fb-gallery-thumbs {
display: flex;
flex-wrap: wrap;
gap: 4px;
padding: 8px;
background: #1a0e08;
}
.fb-gallery-thumbs img {
width: 72px;
height: 52px;
object-fit: cover;
cursor: pointer;
border: 2px solid transparent;
transition: border-color 0.2s;
}
.fb-gallery-thumbs img.active,
.fb-gallery-thumbs img:hover {
border-color: var(--fb-accent);
} #fb-modal-title {
font-family: var(--fb-font-body);
font-size: 1.5rem;
font-weight: bold;
color: var(--fb-dark);
margin: 0 30px 4px 0;
}
.fb-modal-country {
font-family: var(--fb-font-ui);
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--fb-accent);
margin: 0 0 12px;
}
.fb-modal-desc {
font-family: var(--fb-font-body);
font-size: 0.9rem;
color: var(--fb-text);
line-height: 1.7;
margin-bottom: 16px;
}
.fb-modal-specs {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 14px;
}
.fb-modal-feature-tags {
font-family: var(--fb-font-ui);
font-size: 0.75rem;
color: var(--fb-muted);
margin-bottom: 16px;
display: flex;
gap:5px;
flex-wrap: wrap;
} .fb-pricing-table-wrap h4 {
font-family: var(--fb-font-ui);
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--fb-muted);
border-bottom: 1px solid var(--fb-border);
padding-bottom: 6px;
margin: 0 0 10px;
}
.fb-pricing-table {
width: 100%;
border-collapse: collapse;
font-family: var(--fb-font-ui);
font-size: 0.82rem;
margin-bottom: 6px;
}
.fb-pricing-table th {
text-align: left;
padding: 5px 8px;
background: var(--fb-light);
color: var(--fb-muted);
font-weight: normal;
border: 1px solid var(--fb-border);
}
.fb-pricing-table td {
padding: 5px 8px;
border: 1px solid var(--fb-border);
color: var(--fb-text);
}
.fb-pricing-table tr:hover td { background: #fdf0e0; } .fb-booking-panel {
padding: 24px;
border-top: 2px solid var(--fb-border);
background: var(--fb-light);
}
.fb-booking-panel h3 {
font-family: var(--fb-font-body);
font-size: 1.3rem;
color: var(--fb-primary);
margin: 0 0 16px;
}
.fb-back-btn {
background: transparent;
border: 1px solid var(--fb-border);
font-family: var(--fb-font-ui);
font-size: 0.8rem;
padding: 5px 12px;
cursor: pointer;
margin-bottom: 14px;
color: var(--fb-muted);
}
.fb-back-btn:hover { background: var(--fb-border); }
.fb-form-row {
display: flex;
gap: 14px;
}
.fb-form-group {
flex: 1;
margin-bottom: 14px;
}
.fb-form-group label {
display: block;
font-family: var(--fb-font-ui);
font-size: 0.78rem;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--fb-muted);
margin-bottom: 5px;
}
.fb-form-group input,
.fb-form-group select,
.fb-form-group textarea {
width: 100%;
padding: 8px 10px;
border: 1px solid var(--fb-border);
background: var(--fb-white);
font-family: var(--fb-font-body);
font-size: 0.9rem;
color: var(--fb-dark);
box-sizing: border-box;
}
.fb-form-group input:focus,
.fb-form-group select:focus,
.fb-form-group textarea:focus {
outline: 2px solid var(--fb-accent);
border-color: var(--fb-accent);
}
.fb-checkbox { flex: none; }
.fb-checkbox label { text-transform: none; letter-spacing: 0; font-size: 0.82rem; } .fb-km-options {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin-top: 6px;
}
.fb-km-option {
display: flex;
align-items: stretch;
cursor: pointer;
}
.fb-km-option input[type="radio"] {
display: none;
}
.fb-km-label {
flex: 1;
border: 2px solid var(--fb-border);
padding: 10px 12px;
background: var(--fb-white);
display: flex;
justify-content: space-between;
align-items: center;
font-family: var(--fb-font-ui);
font-size: 0.85rem;
transition: border-color 0.2s, background 0.2s;
cursor: pointer;
}
.fb-km-label strong { color: var(--fb-dark); }
.fb-km-label em { color: var(--fb-accent); font-style: normal; font-weight: bold; }
.fb-km-option input[type="radio"]:checked + .fb-km-label {
border-color: var(--fb-primary);
background: #fdf3e7;
} .fb-price-preview {
background: var(--fb-white);
border: 1px solid var(--fb-border);
padding: 14px 16px;
margin: 12px 0;
}
.fb-price-preview h4 {
font-family: var(--fb-font-ui);
font-size: 0.78rem;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--fb-muted);
margin: 0 0 8px;
}
.fb-price-breakdown {
font-family: var(--fb-font-ui);
font-size: 0.82rem;
color: var(--fb-text);
}
.fb-price-line {
display: flex;
justify-content: space-between;
padding: 3px 0;
border-bottom: 1px dotted var(--fb-border);
}
.fb-price-total {
font-family: var(--fb-font-ui);
font-size: 1.1rem;
font-weight: bold;
color: var(--fb-primary);
border-top: 2px solid var(--fb-border);
margin-top: 8px;
padding-top: 8px;
display: flex;
justify-content: space-between;
} #fb-booking-msg .fb-success {
background: #e8f5e9;
border: 1px solid #c8e6c9;
color: #2e7d32;
padding: 10px 14px;
font-family: var(--fb-font-ui);
font-size: 0.88rem;
margin-bottom: 14px;
}
#fb-booking-msg .fb-error {
background: #ffebee;
border: 1px solid #ffcdd2;
color: #c62828;
padding: 10px 14px;
font-family: var(--fb-font-ui);
font-size: 0.88rem;
margin-bottom: 14px;
} .fb-locations-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
}
.fb-location-card {
border: 1px solid var(--fb-border);
background: var(--fb-white);
overflow: hidden;
box-shadow: var(--fb-shadow);
}
.fb-location-card img {
width: 100%;
height: 180px;
object-fit: cover;
display: block;
}
.fb-location-info {
padding: 14px;
font-family: var(--fb-font-body);
}
.fb-location-info h3 {
font-size: 1.05rem;
margin: 0 0 6px;
color: var(--fb-dark);
}
.fb-location-info p {
font-size: 0.85rem;
color: var(--fb-muted);
margin: 4px 0;
} .fb-seasons-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.fb-season-item {
padding: 10px 14px;
background: var(--fb-light);
font-family: var(--fb-font-ui);
font-size: 0.88rem;
display: flex;
gap: 16px;
align-items: center;
} @media (max-width: 700px) {
.fb-modal-inner { flex-direction: column; }
.fb-modal-left  { flex: none; }
.fb-form-row    { flex-direction: column; gap: 0; }
.fb-km-options  { grid-template-columns: 1fr; }
.fb-modal-container { width: 98%; max-height: 95vh; top: 2.5%; transform: translate(-50%, 0); }
}
div#fb-gallery-loader {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.loader {
width: 45px;
aspect-ratio: 1;
--c: no-repeat linear-gradient(#fff 0 0);
background:
var(--c) 0% 50%,
var(--c) 50% 50%,
var(--c) 100% 50%;
background-size: 20% 100%;
animation: l1 1s infinite linear;
}
@keyframes l1 {
0% {background-size: 20% 100%,20% 100%,20% 100%}
33% {background-size: 20% 10% ,20% 100%,20% 100%}
50% {background-size: 20% 100%,20% 10% ,20% 100%}
66% {background-size: 20% 100%,20% 100%,20% 10% }
100%{background-size: 20% 100%,20% 100%,20% 100%}
}
.loader-text{
color:#fff !important;
}
.fb-km-label {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 10px 14px;
border-radius: 999px;
border: 1px solid #ddd;
cursor: pointer;
transition: 0.2s ease;
}
.fb-km-option input:checked + .fb-km-label {
border-color: #007bff;
background: #f0f6ff;
} .fb-km-text {
display: flex;
flex-direction: row ;
gap:10px;
} .fb-qty {
display: none !important;
align-items: center;
gap: 6px;
background: #f5f5f5;
border-radius: 999px;
padding: 4px 6px;
}
.qty-btn {
border: none;
background: white;
width: 26px;
height: 26px;
border-radius: 50%;
font-size: 16px;
cursor: pointer;
transition: 0.2s;
}
.qty-btn:hover {
background: #007bff;
color: white;
}
.qty-input {
padding:0px !important;
width: 36px !important;
text-align: center !important;
border: none !important;
background: transparent !important;
font-weight: bold;
outline: none !important;
height: 26px !important;
margin: 0px !important;
} .qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
} .qty-input{
-moz-appearance: textfield;
}
.fb-km-option input[type="radio"]:checked + .fb-km-label .fb-qty {
display: flex !important;
}