/* Global Styles */
:root {
	--aal-primary: #2c3e50;
	--aal-secondary: #e74c3c;
	--aal-text-color: #0d1b3e;
	--aal-font-family: 'Inter', sans-serif;
	--aal-font-size: 14px;
	--aal-icon-color: #ff5722;
	--aal-icon-size: 18px;
	--aal-title-font-family: 'Montserrat', sans-serif;
	--aal-title-font-size: 1.1em;
}

.aal-inventory-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Grid Layout */
.aal-layout-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

/* Vehicle Card - E-Tron GT Style */
.aal-vehicle-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
}

.aal-vehicle-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Image Area */
.aal-card-image {
	position: relative;
	width: 100%;
	height: 220px; /* Fixed height for consistency */
	overflow: hidden;
	background: #f8f8f8;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aal-card-image a {
	display: block;
	width: 100%;
	height: 100%;
}
.aal-card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain; /* Ensure whole car is visible inside box */
	transition: transform 0.5s ease;
}
.aal-vehicle-card:hover .aal-card-image img {
	transform: scale(1.05);
}

/* Badge */
.aal-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--aal-secondary);
	color: #fff;
	padding: 5px 12px;
	border-radius: 30px;
	font-size: 0.7em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
	box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Content Area */
.aal-card-content {
	padding: 20px;
}

.aal-card-title {
	margin: 0 0 10px 0;
	font-family: var(--aal-title-font-family);
	font-size: var(--aal-title-font-size);
	font-weight: 700;
	color: var(--aal-text-color);
	line-height: 1.3;
}
.aal-card-title a {
	text-decoration: none;
	color: inherit;
}

.aal-price {
	font-size: 1.25em;
	color: var(--aal-secondary);
	font-weight: 800;
	margin-bottom: 15px;
	display: block;
}

/* Specs Grid - 2x2 or 3x1 depending on space */
.aal-specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 15px;
}

.aal-spec-item {
	display: flex;
	align-items: center;
	font-size: 0.85em;
	color: #666;
}
.aal-spec-item i {
	color: var(--aal-icon-color);
	margin-right: 8px;
	width: 16px;
	text-align: center;
}

/* Footer Actions */
.aal-card-footer {
	border-top: 1px solid #f9f9f9;
	padding-top: 15px;
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.aal-btn {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 0.85em;
	font-weight: 600;
	transition: all 0.3s;
}

.aal-btn-primary {
	background: var(--aal-primary);
	color: #fff;
}
.aal-btn-primary:hover {
	background: #34495e;
}

.aal-btn-outline {
	border: 1px solid #eee;
	color: #666;
}
.aal-btn-outline:hover {
	border-color: var(--aal-primary);
	color: var(--aal-primary);
}

/* Filter Bar Styles - Premium Dark Strip */
.aal-filter-bar {
	background: #1e272e;
	padding: 15px 25px;
	border-radius: 8px;
	margin-bottom: 40px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
	border: none;
}

.aal-filter-group {
	flex: 1;
	min-width: 140px;
}
.aal-filter-group label {
    display: none; /* Hide labels for cleaner look, rely on placeholder/default option */
}

.aal-filter-group select, .aal-filter-group input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #34495e;
	border-radius: 6px;
	background-color: #2c3e50;
	color: #ecf0f1;
	font-family: var(--aal-font-family);
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s;
}
.aal-filter-group select:hover, .aal-filter-group select:focus {
    background-color: #34495e;
    border-color: var(--aal-secondary);
    outline: none;
}

.aal-btn-filter {
	padding: 12px 25px;
	background: var(--aal-secondary);
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 700;
	font-family: var(--aal-title-font-family);
	text-transform: uppercase;
	font-size: 0.85em;
	letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}
.aal-btn-filter:hover {
	background: #c0392b;
}

/* Vehicle Card - Premium Redesign */
.aal-vehicle-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
    /* Subtle Shadow for Depth */
	box-shadow: 0 10px 30px -5px rgba(0,0,0,0.1); 
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
    border: none;
}

.aal-vehicle-card:hover {
	transform: translateY(-8px);
    /* Deeper Shadow on Hover */
	box-shadow: 0 20px 40px -5px rgba(0,0,0,0.2);
}

/* Image Area */
.aal-card-image {
	position: relative;
	width: 100%;
	height: 240px;
	overflow: hidden;
	background: #f4f6f7;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aal-card-image a {
	display: block;
	width: 100%;
	height: 100%;
}
.aal-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Cleaner look than contain for listings */
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.aal-vehicle-card:hover .aal-card-image img {
	transform: scale(1.08);
}

/* Badges */
.aal-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.aal-badge-body {
	background: rgba(30, 39, 46, 0.85);
    backdrop-filter: blur(4px);
	color: #fff;
	padding: 5px 12px;
	border-radius: 4px;
	font-size: 0.7em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.aal-badge-new {
    background: var(--aal-secondary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
}

/* Content Area */
.aal-card-content {
	padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.aal-card-meta-top {
    font-size: 0.75em;
    color: #95a5a6;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.aal-dot {
    margin: 0 5px;
    color: #bdc3c7;
}

.aal-card-title {
	margin: 0 0 10px 0;
	font-family: var(--aal-title-font-family);
	font-size: 1.3em;
	font-weight: 800;
	color: #2c3e50;
	line-height: 1.2;
}
.aal-card-title a {
	text-decoration: none;
	color: inherit;
    transition: color 0.2s;
}
.aal-card-title a:hover {
    color: var(--aal-secondary);
}

/* Grid Specs */
.aal-specs-grid-card {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 12px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

.aal-spec-i {
	display: flex;
	flex-direction: column;
    text-align: center;
}
.aal-si-label {
    font-size: 0.65em;
    color: #95a5a6;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.aal-si-val {
    font-size: 0.85em;
    font-weight: 700;
    color: #34495e;
}

/* Footer Actions */
.aal-card-footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
    border-top: 1px solid #f1f2f6;
    padding-top: 12px;
}

.aal-price-block {
    display: flex;
    flex-direction: column;
}
.aal-price-val {
    font-size: 1.4em;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    font-family: var(--aal-title-font-family);
}
.aal-price-suf {
    font-size: 0.65em;
    color: #95a5a6;
    font-weight: 600;
    text-transform: uppercase;
}

.aal-btn-view {
    padding: 8px 18px;
    background: transparent;
    border: 2px solid #ecf0f1;
    color: #7f8c8d;
    border-radius: 30px;
    font-size: 0.8em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    /* Elementor Fix: Ensure box-sizing and display properties are robust */
    box-sizing: border-box;
    display: inline-block;
    line-height: normal;
    white-space: nowrap;
    width: auto;
    height: auto;
}
.aal-btn-view:hover {
    border-color: var(--aal-secondary);
    background: var(--aal-secondary);
    color: #fff;
}

/* --- Single Vehicle Page Layout (Premium Compact) --- */

.aal-single-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.aal-single-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr; /* 65% - 35% roughly */
    gap: 30px;
    align-items: start;
}

/* 1. Gallery Section - Compact Cinematic */
.aal-gallery-section {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 10px;
    border: 1px solid #f0f0f0;
}

.aal-gallery-main {
    position: relative;
    width: 100%;
    height: 400px; /* Reduced from 500px for compactness */
    background: #111; /* Sleek solid dark */
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: zoom-in;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aal-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.aal-gallery-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.9);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}
.aal-gallery-main:hover .aal-gallery-overlay-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.aal-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
}

.aal-thumb-item {
    flex: 0 0 80px;
    height: 60px;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.2s;
    background: #f0f0f0;
}
.aal-thumb-item.active, .aal-thumb-item:hover {
    opacity: 1;
    border-color: var(--aal-secondary);
}
.aal-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 2. Price Card - Sleek & Sticky-ish */
.aal-price-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.aal-price-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--aal-secondary);
}

.aal-price-label {
    display: block;
    font-size: 0.75em;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-family: var(--aal-title-font-family);
}
.aal-price-display {
    font-size: 2.2em;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    font-family: var(--aal-title-font-family);
}
.aal-currency {
    font-size: 0.6em;
    vertical-align: top;
    margin-right: 2px;
}
.aal-suffix {
    font-size: 0.4em;
    color: #aaa;
    font-weight: 500;
    margin-left: 5px;
}

/* 3. Description Section */
.aal-description-section {
    margin-bottom: 30px;
}
.aal-description-section h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    font-family: var(--aal-title-font-family);
    letter-spacing: -0.5px;
}
.aal-content-body {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
}

/* 4. Tech Specs - Sleek Modern Cards */
.aal-tech-specs {
    margin-bottom: 30px;
}
.aal-tech-specs h3 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    font-family: var(--aal-title-font-family);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    display: inline-block;
}

.aal-specs-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); /* Wider cards */
    gap: 15px;
}

.aal-spec-row {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    border-left: 3px solid var(--aal-secondary); /* Accent border */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.aal-spec-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
    border-color: #e0e0e0;
}

/* Label */
.aal-spec-row span {
    font-size: 0.65em;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 600;
    z-index: 2;
}

/* Value */
.aal-spec-row strong {
    font-size: 1.1em;
    color: #2c3e50;
    font-weight: 700;
    word-break: break-word; /* Fixes VIN cutoff */
    font-family: var(--aal-title-font-family);
    z-index: 2;
    line-height: 1.2;
}

/* Background Icons (Subtle Watermark Effect) */
.aal-spec-row::after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 60px;
    height: 60px;
    opacity: 0.05;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(-15deg);
    transition: opacity 0.3s;
}

/* --- Theme Compatibility Fixes --- */
/* Aggressively hide theme post meta on Single Vehicle Pages */
.single-vehicle .entry-meta,
.single-vehicle .post-meta,
.single-vehicle .byline,
.single-vehicle .cat-links,
.single-vehicle .posted-on,
.single-vehicle .author,
.single-vehicle .entry-footer,
.single-vehicle .post-author,
.single-vehicle .meta-info,
.single-vehicle .entry-date,
.single-vehicle .date,
.single-vehicle .post-date,
.single-vehicle .comments-area,
.single-vehicle .post-navigation,
.single-vehicle .nav-links {
    display: none !important;
}

/* Hide theme's default featured image if it duplicates ours */
.single-vehicle .post-thumbnail,
.single-vehicle .entry-thumbnail,
.single-vehicle .featured-image {
    display: none !important;
}

.aal-spec-row:hover::after {
    opacity: 0.15;
}

/* Specific Icons via nth-child (Order: VIN, Engine, Fuel, Body) */

/* VIN - Fingerprint/ID - Full Width to show complete VIN */
.aal-specs-list .aal-spec-row:nth-child(1) {
    grid-column: 1 / -1;
}

.aal-specs-list .aal-spec-row:nth-child(1)::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M2 3h20v18H2zm18 16V5H4v14zM6 7h12v2H6zm0 4h12v2H6zm0 4h8v2H6z"/></svg>');
}

/* Engine - Piston/Cog */
.aal-specs-list .aal-spec-row:nth-child(2)::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>');
}

/* Fuel - Gas Pump */
.aal-specs-list .aal-spec-row:nth-child(3)::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33a2.5 2.5 0 0 0 2.5 2.5c.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77z"/></svg>');
}

/* Body Type - Car */
.aal-specs-list .aal-spec-row:nth-child(4)::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z"/></svg>');
}

/* Quick Specs (Sidebar) - Premium Redesign */
.aal-quick-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    background: transparent;
    padding: 0;
    border: none;
}

.aal-quick-spec {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.aal-quick-spec:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #e0e0e0;
}

.aal-qs-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(231, 76, 60, 0.1); /* Soft secondary color */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.aal-qs-icon {
    font-size: 1.2em;
    line-height: 1;
}

.aal-qs-text {
    display: flex;
    flex-direction: column;
}

.aal-qs-val {
    font-size: 1.1em;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.1;
    font-family: var(--aal-title-font-family);
}

.aal-qs-label {
    font-size: 0.7em;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 2px;
}

/* 5. Inquiry Form - Premium Compact */
.aal-inquiry-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 4px solid var(--aal-secondary);
}

.aal-inquiry-card h3 {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #2c3e50;
    font-family: var(--aal-title-font-family);
    font-weight: 700;
}

.aal-form-group {
    margin-bottom: 15px;
}

.aal-form-group input, .aal-form-group textarea {
    box-sizing: border-box; /* Fixes width calculation to include padding/border */
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px; /* Soft pill-like */
    font-size: 0.9em;
    transition: all 0.2s;
    background: #fdfdfd;
    font-family: 'Inter', sans-serif;
}
.aal-form-group input:focus, .aal-form-group textarea:focus {
    border-color: var(--aal-secondary);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.aal-btn-full {
    box-sizing: border-box; /* Ensures padding doesn't push width over 100% */
    width: 100%;
    padding: 15px;
    background: var(--aal-secondary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--aal-title-font-family);
}
.aal-btn-full:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.aal-disclaimer {
    text-align: center;
    font-size: 0.75em;
    color: #bbb;
    margin-top: 15px;
}

/* Lightbox Styles */
.aal-lightbox {
    display: none;
    position: fixed;
    z-index: 99999; /* Increased z-index */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}
.aal-lightbox.open {
    display: flex;
}

.aal-lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    border-radius: 4px;
    object-fit: contain;
    animation: aalZoomIn 0.3s ease-out;
}

@keyframes aalZoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.aal-lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 100000;
}
.aal-lightbox-close:hover {
    color: var(--aal-secondary);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .aal-single-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .aal-gallery-main {
        height: 300px;
    }
    .aal-specs-list {
        grid-template-columns: 1fr 1fr;
    }
    .aal-price-display {
        font-size: 2em;
    }
}
