/* Hero */
.showroom-hero {
    padding: 180px 0 60px;
    text-align: center;
}
.showroom-hero .subtitle {
    color: var(--white-64);
    margin-top: 20px;
}
.showroom-hero .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    color: var(--white-64);
    transition: color 0.3s;
}
.showroom-hero .back-btn:hover {
    color: var(--white);
}
.showroom-hero .back-btn i {
    transform: rotate(180deg);
    font-size: 12px;
}

/* Divider */
.showroom-divider {
    padding: 50px 0 30px;
}
.showroom-divider .divider-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--white-12);
    padding-top: 20px;
}
.showroom-divider .project-count {
    color: var(--white-64);
}
.showroom-divider .project-count span {
    color: var(--white);
}

/* Grid */
.showroom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 100px;
}

/* Project card */
.showroom-item {
    position: relative;
}
.showroom-item .project-number {
    color: var(--white-12);
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    position: absolute;
    top: -60px;
    left: -10px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}
.showroom-item .video-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    z-index: 1;
}
.showroom-item video {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.6s ease;
}
.showroom-item:hover video {
    transform: scale(1.02);
}
.showroom-item-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 0 0;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.showroom-item-content .project-info {
    flex: 1;
    min-width: 280px;
}
.showroom-item-content .project-title {
    margin-bottom: 10px;
}
.showroom-item-content .project-meta {
    color: var(--white-64);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.showroom-item-content .project-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}
.showroom-item-content .project-desc {
    color: var(--white-64);
    max-width: 600px;
    line-height: 1.7;
}
.showroom-item-content .project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-self: flex-start;
    padding-top: 4px;
}
.showroom-item-content .project-tag {
    border: 1px solid var(--white-12);
    border-radius: 100px;
    padding: 6px 16px;
    color: var(--white-64);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Back to portfolio CTA */
.showroom-cta {
    text-align: center;
    padding: 100px 0 40px;
}
.showroom-cta p {
    color: var(--white-64);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 991px) {
    .showroom-item .project-number {
        font-size: 80px;
        top: -40px;
    }
    .showroom-grid {
        gap: 80px;
    }
}
@media (max-width: 767px) {
    .showroom-hero {
        padding: 140px 0 30px;
    }
    .showroom-item .project-number {
        font-size: 60px;
        top: -30px;
    }
    .showroom-grid {
        gap: 60px;
    }
    .showroom-item-content {
        flex-direction: column;
    }
    .showroom-cta {
        padding: 60px 0 20px;
    }
}
