        .container { max-width:1100px; margin:40px auto; }
        .gallery { display:flex; gap:20px; }
        .thumbs img { width:80px; cursor:pointer; border:2px solid #ccc; }
        .spec-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
        .features { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
        .cta { background:#0056ff; color:#fff; padding:14px; text-align:center; font-size:18px; border-radius:8px; cursor:pointer; }
		
	   body{
            font-family:'Segoe UI',sans-serif;
            background:#f4f7ff;
            color:#222;
            line-height:1.6;
        }
        
		/* Thumbnail Slider Wrapper */
		.thumb-slider-wrapper {
			position: relative;
			width: 560px;               /* SAME as main image */
			margin-top: 14px;
		}

		/* Slider itself takes FULL width */
		.thumb-slider {
			display: flex;
			gap: 12px;
			overflow-x: hidden;
			scroll-behavior: smooth;
			width: 100%;
		}

		/* Thumbnails */
			.thumb-slider img {
			width: 110px;
			height: 75px;
			object-fit: cover;
			cursor: pointer;
			border: 2px solid #ccc;
			border-radius: 6px;
			flex-shrink: 0;
			transition: 0.2s;
		}

		.thumb-slider img:hover {
			border-color: #0056ff;
		}

		/* Arrow buttons — FLOAT ON TOP */
		.slider-btn {
			position: absolute;         /* 🔑 KEY FIX */
			top: 50%;
			transform: translateY(-50%);
			background: rgba(255,255,255,0.85);
			border: 1px solid #0056ff;
			color: #0056ff;
			font-size: 22px;
			cursor: pointer;
			width: 32px;
			height: 75px;
			z-index: 5;
		}

		/* Left & Right positioning */
			.slider-btn.left {
			left: -16px;                /* half outside, looks premium */
		}

		.slider-btn.right {
			right: -16px;
		}

		.slider-btn:hover {
			background: #0056ff;
			color: #fff;
		}

		.car-layout {
			display: grid;
			grid-template-columns: 560px 1fr;
			gap: 40px;
			align-items: flex-start;
			margin-top: 30px;
		}
		.car-info h3 {
			margin-top: 0;
		}
		@media (max-width: 1024px) {
			.car-layout {
				grid-template-columns: 1fr;
			}
		}
		.car-info {
			padding-top: 10px;
		}
		
		/* ===== PRICE BADGE ===== */
.price-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0056ff, #003bbf);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    margin: 14px 0 20px;
}

.price-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.4px;
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ===== SELLER CTA ===== */
.seller-cta {
    margin-bottom: 24px;
}

.seller-btn {
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: #fff;
    border: none;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.seller-btn:hover {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
    transform: translateY(-1px);
}

.seller-btn:active {
    transform: translateY(0);
}

/* ===== PRICE + CTA ROW ===== */
.price-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 18px 0 26px;
    flex-wrap: wrap; /* mobile safe */
}

/* Remove extra bottom margin now */
.price-badge {
    margin: 0;
}

.seller-cta {
    margin: 0;
}

/* ===== MAIN IMAGE FIX ===== */
.main-image-box {
    width: 560px;          /* same as gallery column */
    height: 380px;         /* 🔒 FIXED HEIGHT */
    border: 3px solid #222;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image adapts, layout does NOT change */
.main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* 🔑 prevents cropping */
    transition: opacity 0.15s ease-in-out;
}

/* ===== MODAL UPGRADE ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.modal-content h2 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
}

.modal-content .subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

.modal.show {
    display: flex;
}


/* Form */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Phone input */
.phone-input {
    display: flex;
    align-items: center;
}

.phone-input span {
    padding: 12px;
    background: #f1f1f1;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
}

.phone-input input {
    border-radius: 0 8px 8px 0;
}

/* Checkbox */
.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin: 12px 0;
}

/* Button */
.primary-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #ff5722, #e53935);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.primary-btn:hover {
    opacity: 0.95;
}

/* Terms */
.terms {
    font-size: 11px;
    text-align: center;
    margin-top: 10px;
    color: #777;
}

.terms a {
    color: #0056ff;
    text-decoration: none;
}

/* Close */
.modal-content .close {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.modal-content .close:hover {
    color: #000;
	background: #f1f1f1;
}

.modal-content.enhanced {
    background: #ffffff;                 /* ✅ THIS WAS MISSING */
    width: 420px;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35); /* premium look */
    position: relative;
}

/* ===== SELLER CONTACT CARD (UNLOCKED) ===== */
.seller-contact-card {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 20px;
    min-width: 220px;

    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: #fff;

    border-radius: 12px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.25);
}

.seller-contact-card h4 {
    margin: 0 0 6px;
    font-size: 25px;
    font-weight: 700;
}

.seller-contact-card p {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.seller-contact-card span.label {
    font-size: 12px;
    opacity: 0.85;
}

/* ===== OTP ERROR ANIMATION ===== */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

.otp-error {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 6px;
    animation: shake 0.35s ease;
}

.otp-error.flash {
    background: rgba(211, 47, 47, 0.08);
    padding: 6px 8px;
    border-radius: 6px;
}

.otp-error strong {
    font-weight: 800;
    font-size: 14px;
}