/*
 * Showroom Card container
 */
.showroom-card {
    background-color: #fff; /* Equivalent to bg-white */
    border-radius: 0.75rem; /* Equivalent to rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); /* Equivalent to shadow-lg */
    overflow: hidden;
    min-height: 200px; /* Equivalent to min-h-[200px] */
    display: grid;
    grid-template-columns: 1fr; /* Default to single column on small screens */
    gap: 1rem; /* Equivalent to gap-1 */
    align-items: center; /* Equivalent to items-center */
}

@media (min-width: 1024px) { /* lg breakpoint */
    .showroom-card {
        grid-template-columns: repeat(3, 1fr); /* Equivalent to lg:grid-cols-3 */
    }
}

/*
 * Image Section (Left Column on Large Screens)
 */
.showroom-image-wrapper {
    /* On small screens, it takes full width of card */
    height: 100%; /* Equivalent to h-full */
}

@media (min-width: 1024px) { /* lg breakpoint */
    .showroom-image-wrapper {
        grid-column: span 1 / span 1; /* Equivalent to lg:col-span-1 */
    }
}

@media (max-width: 767px) {
    .showroom-content-wrapper {
        padding: 2rem 1rem;
    }
}

/* Aspect Ratio Container for Image */
.showroom-image-aspect-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (aspect-video) for small screens */
    height: 100%; /* Ensure it fills parent height */
}

@media (min-width: 1024px) { /* lg breakpoint */
    .showroom-image-aspect-ratio {
        padding-bottom: 100%; /* 1:1 Aspect Ratio (lg:aspect-square) for large screens */
    }
}

.showroom-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Equivalent to object-cover */
}

/*
 * Content Section (Right Column on Large Screens)
 */
.showroom-content-wrapper {
    padding: 2rem; /* Equivalent to p-8 */
    display: flex;
    flex-direction: column; /* Equivalent to flex flex-col */
    justify-content: center; /* Equivalent to justify-center */
}

@media (min-width: 1024px) { /* lg breakpoint */
    .showroom-content-wrapper {
        grid-column: span 2 / span 2; /* Equivalent to lg:col-span-2 */
    }
}

@media (max-width: 767px) {
    .showroom-content-wrapper {
        padding-inline: 1rem;
    }
}

.showroom-content-inner {
    max-width: 42rem; /* Equivalent to max-w-2xl */
}

/*
 * Showroom Title
 */
.showroom-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.875rem; /* Equivalent to text-3xl */
    font-weight: 700; /* Equivalent to font-bold */
    color: #1f2937; /* Equivalent to text-gray-800 */
    margin-bottom: 1rem; /* Equivalent to mb-4 */
}

/*
 * Showroom Description
 */
.showroom-description {
    font-size: 1.125rem; /* Equivalent to text-lg */
    color: #4b5563; /* Equivalent to text-gray-600 */
    margin-bottom: 1.5rem; /* Equivalent to mb-6 */
    line-height: 1.625; /* Equivalent to leading-relaxed */
}

.showroom-content-inner .button .icon {
    margin-left: 0.8rem;
}

