/* Luxury Car Manager - Modern Dark Theme */

/* Full Width Override for Elementor */
.elementor-widget-shortcode .lcm-car-grid {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 20px;
    box-sizing: border-box;
}

/* Car Grid Layout */
.lcm-car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 0;
    align-items: stretch;
}

/* Modern Car Card */
.lcm-car-card {
    background: linear-gradient(145deg, #0B0B0B, #1a1a1a);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(201, 162, 77, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lcm-card-permalink-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-decoration: none;
}

.lcm-car-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(201, 162, 77, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.lcm-car-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(201, 162, 77, 0.2), 0 0 0 1px rgba(201, 162, 77, 0.3);
}

.lcm-car-card:hover::before {
    opacity: 1;
}

/* Image Container */
.lcm-car-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #0B0B0B;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Buttons Overlay */
.lcm-car-buttons-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

/* Price Overlay */
.lcm-price-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(201, 162, 77, 0.9);
    color: #0B0B0B;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.lcm-car-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9);
}

/* Prevent theme/plugin media click handlers on card images */
.lcm-car-card[data-url] .lcm-car-image img,
.lcm-car-card[data-url] .lcm-car-image a {
    pointer-events: none;
}

/* Route card click through overlay, but keep CTA controls clickable */
.lcm-car-card[data-url] .lcm-car-buttons-overlay,
.lcm-car-card[data-url] .lcm-car-buttons-overlay * {
    pointer-events: auto;
}

.lcm-car-card:hover .lcm-car-thumb {
    filter: brightness(1.1);
}



.lcm-no-image {
    height: 250px;
    background: linear-gradient(135deg, #0B0B0B, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A24D;
    font-size: 16px;
    font-weight: 300;
}

/* Card Content */
.lcm-car-content {
    padding: 20px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lcm-car-title {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.6em;
}

.lcm-car-title a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: #C9A24D;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lcm-car-title a:hover {
    color: #C9A24D;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lcm-car-price {
    font-size: 20px;
    font-weight: 700;
    color: #C9A24D;
    margin: 0 0 6px 0;
    text-shadow: 0 0 10px rgba(201, 162, 77, 0.3);
    display: none; /* Hidden since price is now in overlay */
}

.lcm-car-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0 0 12px 0;
    font-weight: 300;
}

.lcm-car-specs-mini {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    margin: auto 0 0 0;
    padding: 10px;
    background: rgba(201, 162, 77, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 77, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.lcm-spec-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.lcm-spec-icon {
    font-size: 16px;
    color: #C9A24D;
    filter: drop-shadow(0 0 5px rgba(201, 162, 77, 0.3));
}

.lcm-spec-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.lcm-spec-mini {
    background: rgba(201, 162, 77, 0.1);
    color: #C9A24D;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(201, 162, 77, 0.2);
}

/* Modern Buttons */
.lcm-car-buttons {
    display: flex;
    gap: 12px;
}

.lcm-btn {
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lcm-btn-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.lcm-btn:hover .lcm-btn-icon {
    transform: scale(1.2);
}

.lcm-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.lcm-btn:hover::before {
    left: 100%;
}

.lcm-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.lcm-btn:hover::after {
    width: 300px;
    height: 300px;
}

.lcm-btn-call {
    background: linear-gradient(135deg, #C9A24D 0%, #d4b366 50%, #C9A24D 100%);
    color: #0B0B0B !important;
    box-shadow: 0 8px 25px rgba(201, 162, 77, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(201, 162, 77, 0.3);
}

.lcm-btn-call:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(201, 162, 77, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #0B0B0B !important;
    background: linear-gradient(135deg, #d4b366 0%, #C9A24D 50%, #d4b366 100%);
}

.lcm-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20c55a 50%, #25d366 100%);
    color: #FFFFFF !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.lcm-btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #20c55a 0%, #25d366 50%, #20c55a 100%);
}

.lcm-btn-large {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: 50px;
    min-width: 180px;
}

.lcm-btn-icon-only {
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    min-width: auto;
    flex: none;
}

/* Single Car Page */
.lcm-single-car {
    background: #0B0B0B;
    color: #FFFFFF;
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Hero Section */
.lcm-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #0B0B0B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* center content vertically */
}

/* Hero Image wrapper */
.lcm-hero-image {
    width: 100%;
    max-height: 70vh;
    z-index: 0; /* behind content */
}

/* Hero Image itself */
.lcm-hero-img {
    width: 100%;           /* fill wrapper width */
    height: auto;           /* keep aspect ratio */
    max-height: 70vh;       /* never exceed hero height */
    object-fit: contain;
    object-position: center;
    filter: brightness(0.4);
    transition: all 0.3s ease;
    display: block;        /* remove inline spacing */
}

/* .lcm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.8), rgba(201, 162, 77, 0.1));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.lcm-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 40px;
    animation: fadeInUp 1s ease-out;
}

.lcm-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #C9A24D, #C9A24D, #C9A24D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(201, 162, 77, 0.3);
    line-height: 1.2;
}

.lcm-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.lcm-hero-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C9A24D;
    padding-bottom: 30px;
    text-shadow: 0 0 20px rgba(201, 162, 77, 0.5);
}

/* Push buttons to bottom */
.lcm-hero-buttons {
    margin-top: auto;   /* pushes it to bottom */
    display: flex;
    gap: 20px;
    justify-content: start;
    flex-wrap: wrap;
    padding-bottom: 40px; /* adjust spacing from bottom */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcm-car-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: center;
}

/* Gallery Slider */
.lcm-gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.lcm-slider-main {
    position: relative;
    width: 100%;
    height: 500px;
}

.lcm-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lcm-slide.active {
    opacity: 1;
}

.lcm-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.lcm-slider-prev,
.lcm-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 162, 77, 0.9);
    color: #0B0B0B;
    border: 2px solid #C9A24D;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.lcm-slider-prev:hover,
.lcm-slider-next:hover {
    background: #C9A24D;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.6);
}

.lcm-slider-prev {
    left: 20px;
}

.lcm-slider-next {
    right: 20px;
}

.lcm-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.lcm-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lcm-dot.active {
    background: #C9A24D;
    border-color: #C9A24D;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(201, 162, 77, 0.8);
}

.lcm-dot:hover {
    background: #C9A24D;
    border-color: #C9A24D;
    transform: scale(1.2);
}

.lcm-featured-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(201, 162, 77, 0.2);
    transition: transform 0.3s ease;
}

.lcm-featured-image:hover {
    transform: scale(1.02);
}

.lcm-car-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lcm-car-title {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #FFFFFF, #C9A24D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.lcm-price-large {
    font-size: 36px;
    font-weight: 800;
    color: #C9A24D;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(201, 162, 77, 0.4);
}

.lcm-car-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-weight: 300;
}

.lcm-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Car Content Layout */
.lcm-car-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    padding: 40px;
}

.lcm-car-description {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(201, 162, 77, 0.1);
}

.lcm-car-description h2 {
    color: #C9A24D;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

/* Specifications */
.lcm-car-specs {
    background: linear-gradient(145deg, rgba(201, 162, 77, 0.05), rgba(201, 162, 77, 0.02));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(201, 162, 77, 0.2);
    backdrop-filter: blur(10px);
}

.lcm-car-specs h3 {
    margin-bottom: 25px;
    color: #C9A24D;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.lcm-specs-grid {
    display: grid;
    gap: 15px;
}

.lcm-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(201, 162, 77, 0.1);
    transition: all 0.3s ease;
}

.lcm-spec-item:hover {
    padding-left: 10px;
    border-bottom-color: rgba(201, 162, 77, 0.3);
}

.lcm-spec-label {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.lcm-spec-value {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 14px;
}

/* Features */
.lcm-car-features {
    margin-top: 30px;
}

.lcm-car-features h3 {
    margin-bottom: 20px;
    color: #C9A24D;
    font-size: 20px;
    font-weight: 600;
}

.lcm-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lcm-features-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transition: all 0.3s ease;
}

.lcm-features-list li:hover {
    color: #C9A24D;
    padding-left: 30px;
}

.lcm-features-list li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #C9A24D;
    font-weight: bold;
    font-size: 16px;
}

/* Related Cars */
.lcm-related-cars {
    margin-top: 60px;
    padding: 40px;
    border-top: 1px solid rgba(201, 162, 77, 0.2);
}

.lcm-related-cars h2 {
    margin-bottom: 30px;
    color: #C9A24D;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

/* Sticky CTA */
.lcm-sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.lcm-sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.lcm-sticky-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.lcm-sticky-call {
    background: linear-gradient(135deg, #C9A24D, #d4b366);
    color: #0B0B0B;
}

.lcm-sticky-whatsapp {
    background: linear-gradient(135deg, #25d366, #20c55a);
    color: #FFFFFF;
}

/* No Cars Message */
.lcm-no-cars {
    text-align: center;
    padding: 60px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    background: rgba(201, 162, 77, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(201, 162, 77, 0.1);
}

/* Loading Animation */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.lcm-car-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 77, 0.1), transparent);
    animation: shimmer 1.5s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lcm-car-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .lcm-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .lcm-car-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lcm-car-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .lcm-hero-title {
        font-size: 3rem;
    }
    
    .lcm-hero-price {
        font-size: 2rem;
    }
}

/* Single Location Page Stabilizers */
.tax-car_location .lcm-location-hero {
    min-height: auto;
    height: auto;
    padding: 48px 0 24px;
}

.tax-car_location .lcm-location-hero-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 20px;
}

.tax-car_location .lcm-location-hero .lcm-hero-content {
    padding: 0 0 20px;
}

.tax-car_location .lcm-location-hero .lcm-hero-buttons {
    margin-top: 0;
    padding-bottom: 0;
}

.tax-car_location .lcm-related-cars {
    border-top: 0;
    margin-top: 30px;
}

.tax-car_location .lcm-location-archive {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.tax-car_location .lcm-single-car {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.tax-car_location .lcm-related-cars h2 {
    text-align: left;
}

.tax-car_location .lcm-location-description-title {
    font-size: 2.6rem;
    margin: 0 0 18px;
    background: linear-gradient(45deg, #FFFFFF, #C9A24D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.tax-car_location .lcm-location-description-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.tax-car_location .lcm-location-description-actions {
    margin-top: 24px;
    justify-content: flex-start;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .lcm-car-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lcm-category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lcm-single-car {
        margin: 10px;
    }
    
    .lcm-hero-content {
        padding: 20px;
    }
    
    .lcm-hero-title {
        font-size: 2.5rem;
    }
    
    .lcm-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .lcm-hero-price {
        font-size: 1.8rem;
    }
    
    /* .lcm-hero-buttons {
        flex-direction: column;
        align-items: start;
    } */
    
    .lcm-car-content {
        padding: 20px;
    }
    
    .lcm-related-cars {
        padding: 20px;
    }
    
    .lcm-features-list {
        grid-template-columns: 1fr;
    }
    
    .lcm-sticky-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .lcm-sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .tax-car_location .lcm-gallery-slider,
    .tax-car_location .lcm-gallery-fallback {
        height: 46vh !important;
        min-height: 280px !important;
    }

    .tax-car_location .lcm-location-hero {
        padding: 28px 0 10px;
    }

    .tax-car_location .lcm-location-hero .lcm-hero-title {
        font-size: 2rem;
    }

    .tax-car_location .lcm-location-hero .lcm-hero-subtitle {
        font-size: 1rem;
    }

    .tax-car_location .lcm-location-hero .lcm-hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .tax-car_location .lcm-location-hero .lcm-btn-large {
        width: 100%;
        min-width: 0;
    }

    .tax-car_location .lcm-related-cars h2 {
        text-align: center;
    }

    .tax-car_location .lcm-location-description-title {
        font-size: 2rem;
        text-align: center;
    }

    .tax-car_location .lcm-location-description-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .lcm-car-buttons {
        flex-direction: column;
    }
    
    .lcm-car-content {
        padding: 20px;
    }
}
/* Location Shortcode */
.lcm-location-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.lcm-location-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(145deg, #0B0B0B, #1a1a1a);
    border: 1px solid rgba(201, 162, 77, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.lcm-location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(201, 162, 77, 0.18);
}

.lcm-location-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.lcm-location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.lcm-location-card:hover .lcm-location-image {
    transform: scale(1.05);
}

.lcm-location-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A24D;
    background: #0B0B0B;
}

.lcm-location-count {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(201, 162, 77, 0.92);
    color: #0B0B0B;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}

.lcm-location-content {
    padding: 18px 18px 20px;
}

.lcm-location-title {
    margin: 0;
    color: #C9A24D;
    font-size: 20px;
    line-height: 1.2;
}

.lcm-location-description {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

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

@media (max-width: 768px) {
    .lcm-location-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
