/* ==================== SINGLE CAR PAGE - HERO STYLE (Ferrari Design) ==================== */
.bilinfo-single {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Layout - Centered Carousel with Peek */
.bilinfo-hero-section {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    background: #000;
    min-height: 70vh;
}

/* Carousel Container with Peek */
.bilinfo-hero-carousel-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden; /* Clips images at edges for peek effect */
    background: #000;
}

/* Gradient fade on left edge */
.bilinfo-hero-carousel-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

/* Gradient fade on right edge */
.bilinfo-hero-carousel-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

/* Car Info Floating Over Carousel - Right Side */
.bilinfo-hero-info {
    background: linear-gradient(to bottom, rgba(250, 250, 250, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 20vw;
    min-width: 300px;
    max-height: 90%;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

/* Scrollbar for hero info if needed */
.bilinfo-hero-info::-webkit-scrollbar {
    width: 6px;
}

.bilinfo-hero-info::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.bilinfo-hero-info::-webkit-scrollbar-thumb {
    background: #2c75fe;
    border-radius: 3px;
}

.bilinfo-hero-info::-webkit-scrollbar-thumb:hover {
    background: #0156F4;
}

/* Content Wrapper - Left Aligned Content */
.bilinfo-hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
}

/* Badges at Top */
.bilinfo-hero-badges {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.bilinfo-hero-badge {
    height: 60px;
    width: auto;
}

.bilinfo-hero-badge img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Brand & Title - Left Aligned */
.bilinfo-hero-brand {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #2c75fe;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-align: left;
}

.bilinfo-hero-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-align: left;
}

/* Price Section - Left Aligned */
.bilinfo-hero-price {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.bilinfo-hero-price-main {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.bilinfo-hero-price-note {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Quick Stats Icons - Vertical Layout for Floating Card */
.bilinfo-hero-stats {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    width: 100%;
    background: transparent;
}

.bilinfo-hero-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.bilinfo-hero-stat:hover {
    transform: translateX(-3px);
}

.bilinfo-hero-stat-icon {
    width: 22px;
    height: 22px;
    color: #2c75fe;
    flex-shrink: 0;
}

.bilinfo-hero-stat-icon svg {
    width: 100%;
    height: 100%;
}

.bilinfo-hero-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    flex: 1;
}

.bilinfo-hero-stat-label {
    font-size: 9px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: left;
    min-width: 70px;
}

/* Contact Button - Full Width */
.bilinfo-hero-cta {
    display: flex;
    justify-content: stretch;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.bilinfo-hero-contact-btn {
    background: linear-gradient(135deg, #2c75fe 0%, #0156F4 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 700;
  	text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(44, 117, 254, 0.25);
}

.bilinfo-hero-contact-btn:hover {
    background: linear-gradient(135deg, #0156F4 0%, #013cc4 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 117, 254, 0.4);
}

.bilinfo-hero-flag {
    width: 30px;
    height: 20px;
}

/* ==================== BIL ANIMATION I KNAPPEN ==================== */

/* Wrapper til knap med bil */
.bilinfo-hero-cta .button-wrapper-car {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Opdateret kontakt knap styling med bil-animation */
.bilinfo-hero-cta .button-wrapper-car .bilinfo-hero-contact-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 40px;
    font-size: 14px;
    letter-spacing: 2.5px;
    position: relative;
    overflow: hidden; /* VIGTIGT! Holder bilen inde i knappen */
    border-radius: 7px;
    box-shadow: 0 6px 20px rgba(44, 117, 254, 0.3);
}

/* SVG Bil der kører INDE i knappen */
.bilinfo-hero-cta .car-svg {
    position: absolute;
    left: 12px; /* Starter til venstre i knappen */
    top: 50%;
    transform: translateY(-50%) scaleX(-1); /* Vender bilen mod højre */
    width: 35px;
    height: 26px;
    color: rgba(255, 255, 255, 0.9); /* Hvid/transparent så den ses på blå */
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
}

/* Når man hover, kører bilen til højre INDE i knappen */
.bilinfo-hero-cta .button-wrapper-car:hover .bilinfo-hero-contact-btn {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(44, 117, 254, 0.45);
}

.bilinfo-hero-cta .button-wrapper-car:hover .car-svg {
    left: calc(100% - 50px); /* Slutter til højre, men stadig inde i knappen */
    transform: translateY(-50%) scaleX(-1) scale(1.1);
    filter: brightness(1.2);
}

/* ==================== SLUT PÅ BIL ANIMATION ==================== */


/* ==================== EMBLA CAROUSEL STYLES ==================== */
.embla {
    width: 100%;
    height: 100%;
    margin: auto;
    --slide-height: 100%;
    --slide-spacing: 0px;
    --slide-size: 46vw;
}

.embla__viewport {
    overflow: hidden;
}

.embla__container {
    display: flex;
    touch-action: pan-y pinch-zoom;
    margin-left: calc(var(--slide-spacing) * -1);
}

.embla__slide {
    transform: translate3d(0, 0, 0);
    flex: 0 0 var(--slide-size);
    min-width: 0;
    padding-left: var(--slide-spacing);
}

/* Additional styling for images and transitions */
.embla__slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.embla__slide:not(.is-selected) {
    opacity: 0.5;
}

.embla__slide.is-selected {
    opacity: 1;
    z-index: 10;
}

.embla__slide img {
    width: 100%;
    height: 90%;
    object-fit: contain;
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
    border-radius: 8px;
    cursor: pointer;
    transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: filter;
}

.embla__slide.is-selected img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.embla__slide:not(.is-selected) img {
    filter: brightness(0.5) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Image Navigation Arrows - Less Visible */
.bilinfo-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
    border-radius: 4px;
    opacity: 0.4;
}

.bilinfo-hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.bilinfo-hero-nav.prev {
    left: 20px;
}

.bilinfo-hero-nav.next {
    right: 20px;
}

/* Åben Galleri Button */
.bilinfo-open-gallery-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.bilinfo-open-gallery-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.bilinfo-open-gallery-btn svg {
    width: 20px;
    height: 20px;
}

/* Thumbnail Gallery - Hidden */
.bilinfo-thumbnails-container {
    display: none;
}

/* ==================== ACCORDION SECTION - TWO COLUMN ==================== */
.bilinfo-accordion-section {
    width: 100%;
    background: white;
    padding: 60px 0;
}

.bilinfo-accordion-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.bilinfo-two-columns {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

/* Venstre kolonne (70%) - Kort bilinfo */
.bilinfo-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Højre kolonne (30%) - Accordions */
.bilinfo-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bilinfo-right-column .bilinfo-accordion-item:first-child {
    margin-top: 126px;
}

/* Accordion Items - Meget simpelt design */
.bilinfo-accordion-item {
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 2px;
    overflow: hidden;
    background: white;
}

/* Accordion Header - Meget simpelt */
.bilinfo-accordion-header {
    width: 100%;
    padding: 12px 15px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background 0.15s ease;
}

.bilinfo-accordion-header:hover {
    background: #ececec;
}

.bilinfo-accordion-header.active {
    background: #e0e0e0;
    color: #333;
}

.bilinfo-accordion-header svg {
    transition: transform 0.15s ease;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.bilinfo-accordion-header.active svg {
    transform: rotate(180deg);
}

/* Accordion Content */
.bilinfo-accordion-content {
    display: none;
    padding: 20px;
    background: white;
}

/* Price Grid - Én kolonne */
.bilinfo-price-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bilinfo-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 3px;
    border-left: 2px solid #2c75fe;
}

.bilinfo-price-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    flex: 1;
}

.bilinfo-price-amount {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: right;
}

/* Technical Data Grid - Én kolonne */
.bilinfo-technical-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bilinfo-technical-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bilinfo-technical-item:last-child {
    border-bottom: none;
}

.bilinfo-technical-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.3px;
}

.bilinfo-technical-value {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
}

/* Equipment Grid - Én kolonne */
.bilinfo-equipment-grid-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bilinfo-equipment-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bilinfo-equipment-list-item:last-child {
    border-bottom: none;
}

.bilinfo-equipment-list-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.bilinfo-equipment-list-item span {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

/* Billede Galleri Section */
.bilinfo-gallery-section {
    margin-top: 30px;
}

.bilinfo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.bilinfo-gallery-item-hidden {
    display: none;
}

.bilinfo-gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bilinfo-gallery-item:hover {
    transform: scale(1.02);
}

.bilinfo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Åben Galleri Knap - Under billeder */
.bilinfo-open-gallery-wrapper {
    text-align: center;
}

.bilinfo-open-gallery-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bilinfo-open-gallery-button:hover {
    background: #e0e0e0;
    border-color: #ccc;
}

.bilinfo-open-gallery-button svg {
    flex-shrink: 0;
}

/* Kontakt Card - Fuld bredde under galleri */
.bilinfo-contact-card {
    background: linear-gradient(135deg, #2c75fe 0%, #0156F4 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 117, 254, 0.25);
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.bilinfo-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 117, 254, 0.35);
}

.bilinfo-contact-image {
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.bilinfo-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bilinfo-contact-content {
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.bilinfo-contact-content h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.bilinfo-contact-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.bilinfo-contact-person {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bilinfo-contact-person strong {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.bilinfo-contact-person span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.bilinfo-contact-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.bilinfo-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    color: #2c75fe;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bilinfo-contact-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bilinfo-contact-btn svg {
    flex-shrink: 0;
}

.bilinfo-car-info-header {
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e5e5;
}

.bilinfo-car-brand {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.bilinfo-car-model {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.bilinfo-description-box {
    padding-top: 15px;

}

.bilinfo-description-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}


/* Content Sections Below */
.bilinfo-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 50px;
}

/* Quick Stats Section (Below Hero) */
.bilinfo-quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.bilinfo-stat-box {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #e5e5e5;
}

.bilinfo-stat-box:last-child {
    border-right: none;
}

.bilinfo-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.bilinfo-stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Details Section */
.bilinfo-details-section {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bilinfo-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e5e5;
}

.bilinfo-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.bilinfo-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bilinfo-detail-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
}

.bilinfo-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Comment/Description Section */
.bilinfo-comment-section {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bilinfo-comment-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

/* Equipment Section */
.bilinfo-equipment-section {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bilinfo-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bilinfo-equipment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bilinfo-check-icon {
    color: #10b981;
    flex-shrink: 0;
}

.bilinfo-equipment-item span {
    font-size: 14px;
    color: white;
}

.bilinfo-equipment-hidden {
    display: none;
}

.bilinfo-equipment-toggle {
    margin-top: 30px;
    text-align: center;
}

.bilinfo-btn-show-more {
    background: #f8f9fa;
    border: 2px solid #e5e5e5;
    color: #1a1a1a;
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bilinfo-btn-show-more:hover {
    background: white;
    border-color: #1a1a1a;
}

/* ==================== BACK TO OVERVIEW SECTION ==================== */
.bilinfo-back-section {
    width: 100%;
    background: #f8f9fa;
    padding: 50px 0;
    border-top: 1px solid #e5e5e5;
}

.bilinfo-back-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1a1a1a;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 300px;
}

.bilinfo-back-button svg {
    transition: transform 0.3s ease;
}

.bilinfo-back-button:hover {
    background: #2c75fe;
    color: white;
    border-color: #2c75fe;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 117, 254, 0.3);
}

.bilinfo-back-button:hover svg {
    transform: translateX(-5px);
}

/* Legacy back link styles (can be removed) */
.bilinfo-back-link {
    margin-top: 40px;
    text-align: center;
}

.bilinfo-back-btn {
    display: inline-block;
    background: #f8f9fa;
    color: #1a1a1a;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.bilinfo-back-btn:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

/* ==================== LIGHTBOX ==================== */
.bilinfo-lightbox {
    display: none;
    position: fixed;
    z-index: 999999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 80px 20px 20px 20px;
    box-sizing: border-box;
}

/* Lightbox carousel container */
.bilinfo-lightbox-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    flex: 1;
    max-height: calc(100vh - 200px);
    overflow: hidden;
}

/* Lightbox track - horizontal carousel */
.bilinfo-lightbox-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;
}

/* Each lightbox slide */
.bilinfo-lightbox-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bilinfo-lightbox-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    cursor: zoom-in;
    transform-origin: center center;
    will-change: transform;
}

/* Simple close button */
.bilinfo-lightbox-close {
    position: fixed !important;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1000001 !important;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 100, 100, 0.4);
    border-radius: 50%;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.bilinfo-lightbox-close:hover {
    background: rgba(150, 150, 150, 0.6);
    color: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

/* Simplified navigation arrows - hvide pile */
.bilinfo-lightbox-prev,
.bilinfo-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.bilinfo-lightbox-prev:hover,
.bilinfo-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.bilinfo-lightbox-prev {
    left: 30px;
}

.bilinfo-lightbox-next {
    right: 30px;
}

.bilinfo-lightbox-prev svg,
.bilinfo-lightbox-next svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

/* Simple zoom controls - same style as close button */
.bilinfo-zoom-controls {
    position: fixed !important;
    top: 70px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000001 !important;
}

.bilinfo-zoom-btn {
    background: rgba(100, 100, 100, 0.4);
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.bilinfo-zoom-btn:hover {
    background: rgba(150, 150, 150, 0.6);
    color: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

.bilinfo-zoom-btn svg {
    width: 18px;
    height: 18px;
}

/* Lightbox Thumbnails */
.bilinfo-lightbox-thumbnails {
    width: 100%;
    max-width: 1400px;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    z-index: 1000000;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    border-radius: 12px;
}

.bilinfo-lightbox-thumbnails-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    cursor: grab;
    padding: 5px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 90%;
    justify-content: center;
}

.bilinfo-lightbox-thumbnails-track::-webkit-scrollbar {
    display: none;
}

.bilinfo-lightbox-thumbnails-track:active {
    cursor: grabbing;
}

.bilinfo-lightbox-thumb {
    min-width: 100px;
    max-width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    border: 3px solid transparent;
    opacity: 0.5;
    filter: brightness(0.7);
}

.bilinfo-lightbox-thumb:hover {
    opacity: 0.85;
    transform: scale(1.08) translateY(-3px);
    filter: brightness(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.bilinfo-lightbox-thumb.active {
    border-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .bilinfo-hero-carousel-container {
        height: 60vh;
        min-height: 450px;
    }
    
    .embla {
        --slide-size: 75%;
    }
    
    .bilinfo-hero-info {
        width: 25vw;
        min-width: 280px;
        padding: 25px 20px;
        max-height: 85%;
    }
    
    .bilinfo-hero-title {
        font-size: 28px;
    }
    
    .bilinfo-hero-price-main {
        font-size: 24px;
    }
    
    .bilinfo-accordion-inner {
        padding: 0 35px;
    }
}

@media (max-width: 1024px) {
    
    .bilinfo-hero-section {
        flex-direction: column;
        min-height: auto;
    }
    
    .bilinfo-hero-carousel-container {
        height: 55vh;
        min-height: 400px;
    }
    
    .embla {
        --slide-size: 80%;
    }
    
    /* Revert to below carousel layout on tablets */
    .bilinfo-hero-info {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        min-width: auto;
        padding: 50px 30px;
        align-items: center;
        background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    }
    
    .bilinfo-hero-content-wrapper {
        align-items: center;
    }
    
    .bilinfo-hero-brand,
    .bilinfo-hero-title {
        text-align: center;
    }
    
    .bilinfo-hero-title {
        font-size: 32px;
    }
    
    .bilinfo-hero-price {
        align-items: center;
        text-align: center;
    }
    
    .bilinfo-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .bilinfo-hero-stat {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        min-width: 100px;
    }
    
    .bilinfo-hero-stat-value,
    .bilinfo-hero-stat-label {
        text-align: center;
    }
    
    .bilinfo-hero-cta {
        justify-content: center;
    }
    
    .bilinfo-hero-cta .button-wrapper-car {
        max-width: 400px;
    }
    
    .bilinfo-accordion-section {
        padding: 20px 0;
    }
    
    .bilinfo-accordion-inner {
        padding: 0 30px;
    }
    
    .bilinfo-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bilinfo-right-column .bilinfo-accordion-item:first-child {
        margin-top: 0;
    }

    .bilinfo-contact-card {
        max-width: 100%;
    }
    
    .bilinfo-quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bilinfo-details-grid {
        grid-template-columns: 1fr;
    }
    
    .bilinfo-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bilinfo-hero-carousel-container {
        height: 50vh;
        min-height: 350px;
    }
    
    /* Reduce peek effect on tablet - show less of adjacent images */
    .bilinfo-hero-carousel-container::before,
    .bilinfo-hero-carousel-container::after {
        width: 20%;
    }
    
    .embla {
        --slide-size: 85%;
    }
    
    .bilinfo-hero-info {
        padding: 40px 20px;
    }
    
    .bilinfo-hero-title {
        font-size: 28px;
    }
    
    .bilinfo-hero-price-main {
        font-size: 28px;
    }
    
    .bilinfo-hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .bilinfo-hero-stat-icon {
        width: 20px;
        height: 20px;
    }
    
    .bilinfo-hero-stat-value {
        font-size: 16px;
    }
    
    .bilinfo-accordion-section {
        padding: 30px 0;
    }
    
    .bilinfo-accordion-inner {
        padding: 0 20px;
        gap: 30px;
    }
    
    .bilinfo-car-model {
        font-size: 30px;
    }
    
    .bilinfo-description-box {
        padding: 0;
    }
    
    /* Contact Card responsive */
    .bilinfo-contact-card {
        flex-direction: column;
    }
    
    .bilinfo-contact-image {
        width: 100%;
        height: 200px;
    }
    
    .bilinfo-contact-content {
        padding: 25px;
    }
    
    .bilinfo-contact-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .bilinfo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .bilinfo-content-wrapper {
        padding: 40px 20px;
    }
    
    .bilinfo-quick-stats {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .bilinfo-equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .bilinfo-back-section {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .bilinfo-back-button {
        padding: 16px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .bilinfo-hero-carousel-container {
        height: 45vh;
        min-height: 300px;
    }
    
    /* Minimal peek effect on mobile - just 10-15% */
    .bilinfo-hero-carousel-container::before,
    .bilinfo-hero-carousel-container::after {
        width: 15%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    }
    
    .bilinfo-hero-carousel-container::after {
        background: linear-gradient(to left, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    }
    
    .embla {
        --slide-size: 90%;
    }
    
    .embla__slide img {
        max-height: 80%;
    }
    
    .bilinfo-hero-info {
        padding: 30px 15px;
    }
    
    .bilinfo-hero-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .bilinfo-hero-title {
        font-size: 24px;
    }
    
    .bilinfo-hero-price-main {
        font-size: 24px;
    }
    
    .bilinfo-hero-stats {
        gap: 20px;
        padding: 20px 0;
    }
    
    .bilinfo-hero-stat-icon {
        width: 18px;
        height: 18px;
    }
    
    .bilinfo-hero-stat-value {
        font-size: 14px;
    }
    
    .bilinfo-hero-stat-label {
        font-size: 9px;
    }
    
    .bilinfo-hero-nav {
        padding: 6px;
        opacity: 0.6;
    }
    
    .bilinfo-accordion-section {
        padding: 25px 0;
    }
    
    .bilinfo-accordion-inner {
        padding: 0 15px;
    }
    
    .bilinfo-car-model {
        font-size: 24px;
    }
    
    .bilinfo-accordion-header {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .bilinfo-price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 20px;
    }
    
    .bilinfo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .bilinfo-open-gallery-button {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .bilinfo-back-section {
        padding: 30px 15px;
        margin-top: 30px;
    }
    
    .bilinfo-back-button {
        padding: 14px 25px;
        font-size: 13px;
        max-width: 100%;
        width: 100%;
    }
    
    .bilinfo-back-button svg {
        width: 18px;
        height: 18px;
    }
}

/* Quick Stats Icons */
.bilinfo-quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 8px;
    width: 100%;
}

.bilinfo-stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bilinfo-stat-icon {
    color: #2c75fe;
    margin-bottom: 5px;
}

.bilinfo-stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bilinfo-stat-info strong {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.bilinfo-stat-info span {
    font-size: 13px;
    color: #666;
}

/* Detaljer Section */
.bilinfo-details-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bilinfo-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.bilinfo-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	row-gap: 20px;
  	column-gap: 7vw;
}

.bilinfo-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.bilinfo-detail-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
    flex: 1;
}

.bilinfo-detail-value {
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

/* Udstyr Section */
.bilinfo-equipment-section {
    background: linear-gradient(135deg, #1a2332 0%, #0a1e2e 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.bilinfo-equipment-section .bilinfo-section-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.bilinfo-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.bilinfo-equipment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.bilinfo-equipment-hidden {
    display: none;
}

.bilinfo-check-icon {
    flex-shrink: 0;
    color: #4ade80;
}

.bilinfo-equipment-toggle {
    text-align: center;
    margin-top: 30px;
}

.bilinfo-btn-show-more {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bilinfo-btn-show-more:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.bilinfo-btn-show-more svg {
    transition: transform 0.3s;
}

.bilinfo-btn-show-more.expanded svg {
    transform: rotate(180deg);
}

/* Comment Section */
.bilinfo-comment-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bilinfo-comment-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* Back Button */
.bilinfo-back-link {
    margin: 40px 0;
}

.bilinfo-back-btn {
    display: inline-block;
    background: #e9ecef;
    color: #333 !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.bilinfo-back-btn:hover {
    background: #dee2e6;
    transform: translateX(-5px);
}

/* ==================== GALLERY STYLES ==================== */

.bilinfo-gallery-prev,
.bilinfo-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 117, 254, 0.8);
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bilinfo-gallery-prev:hover,
.bilinfo-gallery-next:hover {
    background: rgba(26, 95, 217, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.bilinfo-gallery-prev {
    left: 10px;
}

.bilinfo-gallery-next {
    right: 10px;
}

/* ==================== THUMBNAILS CAROUSEL - BEGRÆNSET TIL 4 SYNLIGE ==================== */
.bilinfo-gallery-thumbs {
    position: relative;
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.bilinfo-thumbs-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 470px; /* Plads til præcis 4 thumbnails (100px * 4 + 10px gap * 3 + 50px padding * 2) */
    width: 100%;
    padding: 0 50px;
}

.bilinfo-thumbs-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0;
}

.bilinfo-thumbs-container::-webkit-scrollbar {
    display: none;
}

.bilinfo-thumb {
    min-width: 100px;
    max-width: 100px;
    width: 100px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    border: 3px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
}

.bilinfo-thumb:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.bilinfo-thumb.active {
    border-color: #2c75fe;
    box-shadow: 0 0 0 1px #2c75fe;
}

.bilinfo-thumbs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 117, 254, 0.95);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.bilinfo-thumbs-nav:hover:not(:disabled) {
    background: rgba(26, 95, 217, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.bilinfo-thumbs-nav.prev {
    left: 0;
}

.bilinfo-thumbs-nav.next {
    right: 0;
}

.bilinfo-thumbs-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(108, 117, 125, 0.5);
}

/* ==================== LIGHTBOX ==================== */
.bilinfo-lightbox {
    display: none;
    position: fixed;
    z-index: 999999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.bilinfo-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 1000000;
}

.bilinfo-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    transform-origin: center center;
}


.bilinfo-lightbox-close {
    position: fixed !important;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1000001 !important;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 100, 100, 0.4);
    border-radius: 50%;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.bilinfo-lightbox-close:hover {
    background: rgba(150, 150, 150, 0.6);
    color: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

.bilinfo-lightbox-prev,
.bilinfo-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 117, 254, 0.8);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000000;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bilinfo-lightbox-prev:hover,
.bilinfo-lightbox-next:hover {
    background: rgba(26, 95, 217, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.bilinfo-lightbox-prev {
    left: 20px;
}

.bilinfo-lightbox-next {
    right: 20px;
}

.bilinfo-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    background: rgba(44, 117, 254, 0.9);
    padding: 12px 24px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000000;
}

/* ==================== ZOOM CONTROLS ==================== */

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .bilinfo-filters {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bilinfo-filter-actions {
        grid-column: 1 / -1;
    }
    
    .bilinfo-single-main {
        grid-template-columns: 1fr;
    }
    
    .bilinfo-info-price-box {
        position: static;
    }
    
    .bilinfo-details-grid {
        grid-template-columns: 1fr;
    }
    
    .bilinfo-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
  	.bilinfo-gallery-prev,
    .bilinfo-gallery-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(44, 117, 254, 0.8);
      color: white;
      border: none;
      padding: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
      border-radius: 8px;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
  
  
    .bilinfo-filters {
        grid-template-columns: 1fr;
    }
    
    .bilinfo-grid {
        grid-template-columns: 1fr;
    }
    
    .bilinfo-single-main {
        grid-template-columns: 1fr;
    }
    
    .bilinfo-gallery-main {
        height: 300px;
    }
    
    .bilinfo-thumbs-wrapper {
        max-width: 360px; /* 3 thumbnails på tablet */
        padding: 0 40px;
    }
    
    .bilinfo-thumb {
        min-width: 90px;
        max-width: 90px;
        width: 90px;
        height: 72px;
    }
    
    .bilinfo-thumbs-nav {
        width: 35px;
        height: 35px;
        padding: 8px;
    }
    
    .bilinfo-zoom-controls {
        top: 70px;
        right: 10px;
        gap: 6px;
    }

    .bilinfo-zoom-btn {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .bilinfo-zoom-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .bilinfo-quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bilinfo-details-section,
    .bilinfo-equipment-section,
    .bilinfo-comment-section {
        padding: 25px 20px;
    }
    
    .bilinfo-section-title {
        font-size: 24px;
    }
    
    .bilinfo-equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .bilinfo-car-header {
        padding: 25px 20px 15px 20px;
    }
    
    .bilinfo-car-header .bilinfo-car-title {
        font-size: 24px;
    }
    
    .bilinfo-price-section {
        padding: 20px;
    }
    
    .bilinfo-leasing-calculator {
        padding: 20px;
    }
    
    .bilinfo-leasing-amount {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .bilinfo-filter-form {
        padding: 15px;
    }
    
    .bilinfo-car-title {
        font-size: 18px;
    }
    
    .bilinfo-price-main {
        font-size: 22px;
    }
    
    .bilinfo-car-header .bilinfo-car-title {
        font-size: 22px;
    }
    
    .bilinfo-price-box {
        padding: 20px;
    }
    
    .bilinfo-gallery-main {
        height: 250px;
    }
    
    .bilinfo-thumbs-wrapper {
        max-width: 280px; /* 3 thumbnails på mobil */
        padding: 0 35px;
    }
    
    .bilinfo-thumb {
        min-width: 75px;
        max-width: 75px;
        width: 75px;
        height: 60px;
    }
    
    .bilinfo-thumbs-nav {
        width: 30px;
        height: 30px;
        padding: 6px;
    }
}