/* ===== Menu Showcase Plugin Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500&display=swap');

.ms-showcase {
    background: #000000;
    color: #fff;
    padding: 80px 24px;
    font-family: 'Barlow', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.ms-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ===== LEFT ===== */
.ms-left {
    flex: 1 1 50%;
    min-width: 0;
}

.ms-headline {
    font-family: 'MonumentExtended', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.ms-accent {
    color: #e8196b;
}

.ms-intro {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #aaa;
    margin: 0 0 40px;
    max-width: 480px;
}

/* ===== FEATURES ===== */
.ms-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 44px;
}

.ms-feature {
    cursor: pointer;
    padding: 20px 0;
    border-top: 1px solid #2a2a2a;
    position: relative;
}

.ms-feature:last-child {
    border-bottom: 1px solid #2a2a2a;
}

/* Progress bar — sits at very top of each feature row */
.ms-feature__bar {
    height: 2px;
    background: transparent;
    margin-bottom: 16px;
    overflow: hidden;
}

.ms-feature__bar-fill {
    height: 100%;
    width: 0%;
    background: #e8196b;
    transition: none;
}

.ms-feature__content {
    padding-left: 0;
}

/* Title — always dimmed, bold + white when active */
.ms-feature__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #444;
    margin: 0 0 10px;
    transition: color 0.25s;
}

/* Description — ALWAYS visible, never hidden */
.ms-feature__desc {
    font-size: 0.88rem !important;
    color: #444 !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    transition: color 0.25s;
}

/* Active state */
.ms-feature--active .ms-feature__title {
    color: #ffffff;
}

.ms-feature--active .ms-feature__desc {
    color: #aaaaaa;
}

/* Hover on inactive */
.ms-feature:not(.ms-feature--active):hover .ms-feature__title {
    color: #777;
}
.ms-feature:not(.ms-feature--active):hover .ms-feature__desc {
    color: #666;
}

/* ===== CTA ===== */
.ms-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8196b;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.ms-cta:hover {
    background: #c4145a;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* ===== RIGHT - PHONE ===== */
.ms-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ms-phone {
    position: relative;
    width: 280px;
    height: 580px;
    background: #111;
    border-radius: 44px;
    box-shadow:
        0 0 0 2px #333,
        0 0 0 4px #1a1a1a,
        0 30px 80px rgba(0,0,0,0.7),
        inset 0 0 0 1px #222;
    overflow: hidden;
}

.ms-phone__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #111;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 0 0 2px #333;
}

.ms-phone__screen {
    position: absolute;
    inset: 8px;
    border-radius: 38px;
    overflow: hidden;
    background: #000;
}

.ms-phone__screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .ms-container {
        flex-direction: column;
        gap: 48px;
    }
    .ms-left {
        flex: none;
        width: 100%;
    }
    .ms-phone {
        width: 240px;
        height: 490px;
    }
}

@media (max-width: 560px) {
    .ms-showcase {
        padding: 48px 16px;
    }
    .ms-phone {
        width: 210px;
        height: 430px;
    }
}
