/* Digital Showroom Section 3: Display & Products Grid CSS */
.el-showroom-interactive-section {
    padding: 90px 0;
}

.showroom-section-hardware {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 90px 0;
    position: relative;
    border-bottom: 1px solid #e9ecef;
}

.showroom-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 100px 0;
    transition: all 0.4s ease;

}

/* Minimalist Tall Hardware Product Cards */
.showroom-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.showroom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
}

/* Tall Image Stage for Displays & Screens */
.showroom-card-img-wrap {
    height: 420px;
    overflow: hidden;
    background: radial-gradient(circle at center, #000000 0%, #111111 100%);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.showroom-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
}

.showroom-card:hover .showroom-card-img {
    transform: scale(1.06) translateY(-6px);
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.14));
}

/* Clean Footer Bar with Title + Arrow Button */
.showroom-card-content {
    padding: 20px 22px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.showroom-card-title {
    font-size: 15px;
    color: #0f172a;
    margin: 0;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.3px;
    text-transform: uppercase !important;
}

.showroom-card-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111111 !important;
    transition: all 0.3s ease;
}

.showroom-card-btn svg {
    stroke: #111111 !important;
    fill: none !important;
    width: 22px;
    height: 22px;
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.showroom-card:hover .showroom-card-btn,
.showroom-card-btn:hover {
    color: #A5DB5C !important;
}

.showroom-card:hover .showroom-card-btn svg,
.showroom-card-btn:hover svg {
    stroke: #A5DB5C !important;
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .showroom-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .showroom-card-img-wrap {
        height: 340px;
    }
}

@media (max-width: 640px) {
    .showroom-products-grid {
        grid-template-columns: 1fr;
        margin-left: 30px !important;
        margin-right: 30px !important;
    }
    .showroom-card-img-wrap {
        height: 300px;
    }
}
