/* Wrapper */
.fpd-breakfast-module {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Tabs */
.fpd-breakfast-module .fpd-tabs {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    border-radius: 8px;
    background: #145565;
    padding: 8px;
    margin-bottom: 30px;
}
.fpd-breakfast-module .fpd-tab {
    padding: 8px 24px;
    background: #145565;
    color: #fff;
    font-weight: normal;
    width: 100%;
    border: none;
    font-family: 'Sofia Pro Light';
    font-size: 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}
.fpd-breakfast-module .fpd-tab.active {
    background: #fff;
    color: #004c4c;
    border: 2px solid #145565;
}

/* Content Area */
.fpd-breakfast-module .fpd-content {
    display: none;
    position: relative;
    width: 100%;
}
.fpd-breakfast-module .fpd-content.active {
    display: block;
}

/* Image */
.fpd-breakfast-module .fpd-image {
    width: 60%;
}
.fpd-breakfast-module .fpd-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Info Card Overlay */
.fpd-breakfast-module .fpd-info-card {
    background: #fff;
    padding: 60px;
    width: 50%;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Header */
.fpd-breakfast-module .fpd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.fpd-breakfast-module .fpd-title {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: "Crimson Text";
}
.fpd-breakfast-module .fpd-title .fpd-icon {
    width: 32px;
    height: auto;
}
.fpd-breakfast-module .fpd-cuisine {
    font-size: 14px;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.fpd-cuisine-description , .fpd-description{
    font-family: "Crimson Text";
}
/* Divider */
.fpd-breakfast-module .fpd-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 15px 0;
}

/* Sections */
.fpd-breakfast-module .fpd-label {
    margin-bottom: 6px;
    color:  rgba(39, 39, 39, 0.80);
    font-family: 'Sofia Pro Light';
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; 
    text-transform: uppercase;
}

.fpd-breakfast-module .fpd-description,
.fpd-breakfast-module .fpd-hours {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    font-family: "Crimson Text";
}

/* Button */
.fpd-breakfast-module .fpd-btn {
    background: #145565;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 40px;
    display: inline-flex;
    padding: 5.3px 17px 5.5px 17px;
    align-items: flex-start;
    color: #FFF;
    font-family: "Sofia Pro Light";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 27.2px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 980px) {
    .fpd-breakfast-module .fpd-info-card {
        width: 90%;
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin-top: -30px;
    }
    .fpd-breakfast-module .fpd-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .fpd-breakfast-module .fpd-info-card {
        padding: 20px;
        width: 100%;
    }
    .fpd-breakfast-module .fpd-image {
        width: 100%;
    }
    .fpd-breakfast-module .fpd-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 8px 5px;
    }

    .fpd-breakfast-module .fpd-tab {
        flex: 0 0 auto; /* Prevent tabs from shrinking */
        min-width: max-content; /* Fit the text width */
        width: auto;
        font-size: 20px;
        gap: 0;
    }

    /* Optional: Style scrollbar for better UX */
    .fpd-breakfast-module .fpd-tabs::-webkit-scrollbar {
        height: 2px;
    }

    .fpd-breakfast-module .fpd-tabs::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 3px;
    }
}