/* ============================================================
   FastFood Pro Sections — Combined Stylesheet
   Shortcode 1: .ffs-*   (fastfood_section)
   Shortcode 2: .ms-*    (menu_showcase)
   ============================================================ */

/* ============================================================
   SHORTCODE 1: [fastfood_section]
   ============================================================ */

.ffs-section {
    background: #ffffff;
    padding: 72px 20px 80px;
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
}

.ffs-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

/* Headline */
.ffs-title {
	 font-family: 'Poppins';
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 800;
    color: #111111;
    margin: 0 0 14px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* .ffs-subtitle {
    font-size: clamp(13px, 1.6vw, 15px);
    color: #555555;
    max-width: 680px;
    margin: 0 auto 44px;
    line-height: 1.6;
} */

/* Slider — fixed aspect ratio, crossfade, zero layout shift */
/* .ffs-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    
   
} */

/* Fallback for browsers without aspect-ratio */
@supports not (aspect-ratio: 16 / 7) {
    .ffs-slider-wrapper::before {
        content: '';
        display: block;
        padding-top: 43.75%; /* 7/16 */
    }
}

.ffs-slider {
    position: absolute;
    inset: 0;
}

/* All slides stacked, crossfade via opacity */
.ffs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
    z-index: 0;
}

.ffs-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.ffs-slide.leaving {
    opacity: 0;
    z-index: 1;
    transition: opacity 0.7s ease;
}

/* .ffs-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
} */

/* Cards Row */
.ffs-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
    margin-bottom: 44px;
}

.ffs-card {
    cursor: pointer;
    outline: none;
    transition: opacity 0.2s;
}

.ffs-card:hover { opacity: 0.85; }

/* Progress Bar */
.ffs-progress-bar {
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 14px;
    overflow: hidden;
}

.ffs-progress-fill {
    height: 100%;
    width: 0%;
    background: #e91e8c;
    border-radius: 2px;
    transition: width 0.05s linear;
}

.ffs-card-title {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 700;
    color: #111111;
    margin: 0 0 10px;
    line-height: 1.3;
}

.ffs-card-text {
    font-size: clamp(12px, 1.3vw, 14px);
    color: #555555;
    line-height: 1.65;
    margin: 0;
}

/* CTA */
.ffs-cta-wrapper { text-align: center; }

.ffs-cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #e91e8c 0%, #c2185b 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 17px 38px;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 24px rgba(233, 30, 140, 0.35);
}

.ffs-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(233, 30, 140, 0.45);
    color: #ffffff;
    text-decoration: none;
}

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

/* Responsive — shortcode 1 */
@media (max-width: 768px) {
    .ffs-section { padding: 48px 16px 60px; }
    .ffs-cards { grid-template-columns: 1fr; gap: 24px; }
    .ffs-slider-wrapper { border-radius: 14px; }
}

@media (max-width: 480px) {
    .ffs-cta-btn { padding: 15px 24px; font-size: 12px; }
}


/* ============================================================
   SHORTCODE 2: [menu_showcase]
   ============================================================ */

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

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

.ms-left  { flex: 0 0 50%; min-width: 0; }
.ms-right { flex: 0 0 50%; display: flex; justify-content: center; align-items: center; }

.ms-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #fff;
    letter-spacing: -0.5px;
}

.ms-accent { color: #DC00C0; }

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

/* Features list */
.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;
    outline: none;
}

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

.ms-feature__bar {
    height: 2px;
    background: transparent;
    margin-bottom: 16px;
    overflow: hidden;
}

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

.ms-feature__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555555;
    margin: 0 0 10px;
    transition: color 0.25s;
}

.ms-feature__desc {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.65;
    margin: 0;
    display: block;
    transition: color 0.25s;
}

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

.ms-feature:not(.ms-feature--active):hover .ms-feature__title { color: #888; }
.ms-feature:not(.ms-feature--active):hover .ms-feature__desc  { color: #777; }

/* CTA — showcase */
.ms-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #D800B1;
    color: #ffffff;
    font-family: 'Bebas Neue', 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 10px 28px;
    border-top: none;
    border-right: none;
    border-left: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 0, 177, 0.2);
    white-space: nowrap;
    line-height: 1.2;
}

.ms-cta:hover {
    background: #b50094;
    transform: translate(2px, -2px);
    box-shadow: -2px 2px 0px #ffffff;
    color: #ffffff;
    text-decoration: none;
}

.ms-arrow { font-size: 1.5rem; line-height: 1; margin-top: -2px; }

/* Phone mockup */
.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 — shortcode 2 */
@media (max-width: 1024px) {
    .ms-container { gap: 40px; }
    .ms-cta { font-size: 24px; white-space: normal; text-align: center; }
}

@media (max-width: 900px) {
    .ms-container { flex-direction: column; gap: 50px; }
    .ms-left, .ms-right { flex: 0 0 100%; width: 100%; }
    .ms-left { text-align: center; }
    .ms-intro { max-width: 100%; margin-left: auto; margin-right: auto; }
    .ms-features { text-align: left; max-width: 600px; margin-left: auto; margin-right: auto; }
    .ms-cta { font-size: 20px; padding: 10px 20px; white-space: normal; text-align: center; }
    .ms-phone { width: 260px; height: 540px; }
}

@media (max-width: 560px) {
    .ms-showcase { padding: 48px 16px; }
    .ms-cta { font-size: 17px; padding: 8px 16px; border-left-width: 2px; border-bottom-width: 2px; }
    .ms-phone { width: 220px; height: 460px; }
}
